X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=49ec19c3084da7dea685cc74fd7bcfd497f60111;hb=48a4bd38c2b9d1b6b51ebca992a5eab30e85d99b;hp=7db03a41b72cd57084eef25a5c4182e68756ff0f;hpb=32e6545db090868a3191b68f45a9d092f01b6d9e;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index 7db03a41b..49ec19c30 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -27,10 +27,18 @@ class GEOMALGOAPI_EXPORT GeomAlgoAPI_FaceBuilder static std::shared_ptr square(std::shared_ptr theCenter, std::shared_ptr theNormal, const double theSize); + /// Creates square planar face by given point of the center, + /// normal to the plane and size of square + static std::shared_ptr square(std::shared_ptr thePlane, + const double theSize); /// Returns the plane of the planar face. If it is not planar, returns empty ptr. static std::shared_ptr plane(std::shared_ptr theFace); + /// Creates the planar face by given point of the center and normal to the plane. + static std::shared_ptr planarFace(std::shared_ptr theCenter, + std::shared_ptr theNormal); + /// Creates a planar face by given plane, left lower point and size. static std::shared_ptr planarFace(std::shared_ptr thePlane, double theX, double theY,