Salome HOME
Fix Warning in NewGeom_Module.cpp
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.h
index d71ec0b9cff9c7c8eb3794bbc7c0cbe38e067d16..49ec19c3084da7dea685cc74fd7bcfd497f60111 100644 (file)
@@ -35,6 +35,10 @@ class GEOMALGOAPI_EXPORT GeomAlgoAPI_FaceBuilder
   /// Returns the plane of the planar face. If it is not planar, returns empty ptr.
   static std::shared_ptr<GeomAPI_Pln> plane(std::shared_ptr<GeomAPI_Shape> theFace);
 
+  /// Creates the planar face by given point of the center and normal to the plane.
+  static std::shared_ptr<GeomAPI_Shape> planarFace(std::shared_ptr<GeomAPI_Pnt> theCenter,
+                                                   std::shared_ptr<GeomAPI_Dir> theNormal);
+
   /// Creates a planar face by given plane, left lower point and size.
   static std::shared_ptr<GeomAPI_Shape> planarFace(std::shared_ptr<GeomAPI_Pln> thePlane,
                                                    double theX, double theY,