X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Chamfer.h;h=a5f97e3004cb5c3b8964f4f09eea9cbe5a9341f9;hb=bbf6e2c75c79cb80729eb85baecf4d1a17dd7ed8;hp=034966bb71702d03f665655f80ff0c3064e54b29;hpb=dadc434ff48893c2334461b325c096935b784436;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Chamfer.h b/src/GeomAlgoAPI/GeomAlgoAPI_Chamfer.h index 034966bb7..a5f97e300 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Chamfer.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Chamfer.h @@ -36,31 +36,35 @@ public: /// Run chamfer operation with two distances or with a distance and an angle . /// \param theBaseSolid a changing solid /// \param theChamferShapes list of edges the chamfer is performed on - /// \param aMapEdgeFace map that associates an edge to a face when the chamfer is applied to a face - /// \param performDistances boolean that indicates whether the operation is performed with two distances or not - /// \param aVal1 double D1 if performDistances is true or D - /// \param aVal2 double D2 if performDistances is true or Angle + /// \param theMapEdgeFace map that associates an edge to a face when the chamfer is applied + /// to a face + /// \param performDistances boolean that indicates whether the operation is performed with + /// two distances or not + /// \param theVal1 double D1 if performDistances is true or D + /// \param theVal2 double D2 if performDistances is true or Angle GEOMALGOAPI_EXPORT GeomAlgoAPI_Chamfer(const GeomShapePtr& theBaseSolid, const ListOfShape& theChamferShapes, - const std::map aMapEdgeFace, + const std::map theMapEdgeFace, const bool performDistances, - const double aVal1, - const double aVal2); - + const double theVal1, + const double theVal2); + private: /// Perform chamfer operation. - /// \param theBaseSolid a changing solid - /// \param theChamferShapes list of edges the chamfer is performed on - /// \param aMapEdgeFace map that associates an edge to a face when the chamfer is applied to a face - /// \param performDistances boolean that indicates whether the operation is performed with two distances or not - /// \param aVal1 double D1 if performDistances is true or D - /// \param aVal2 double D2 if performDistances is true or Angle + /// \param theBaseSolid a changing solid + /// \param theChamferShapes list of edges the chamfer is performed on + /// \param theMapEdgeFace map that associates an edge to a face when the chamfer is applied + /// to a face + /// \param performDistances boolean that indicates whether the operation is performed with two + /// distances or not + /// \param theVal1 double D1 if performDistances is true or D + /// \param theVal2 double D2 if performDistances is true or Angle GEOMALGOAPI_EXPORT void build(const GeomShapePtr& theBaseSolid, const ListOfShape& theChamferShapes, - const std::map aMapEdgeFace, + const std::map theMapEdgeFace, const bool performDistances, - const double aVal1, - const double aVal2); + const double theVal1, + const double theVal2); }; #endif