Salome HOME
Issue #2059 point in sketch is created not on selected line of external sketchPlane...
[modules/shaper.git] / src / GeomAPI / GeomAPI_Circ2d.h
index df362c3e87d6c1e2a7c98bafdecd116924ffcdeb..42e47defaba1018dcc460823afbae2dd476b5ac7 100644 (file)
 #include <GeomAPI_Interface.h>
 #include <memory>
 
+class GeomAPI_Ax3;
 class GeomAPI_Pnt2d;
 class GeomAPI_Dir2d;
+class GeomAPI_Shape;
 
 /**\class GeomAPI_Circ2d
  * \ingroup DataModel
@@ -31,12 +33,6 @@ class GeomAPI_Circ2d : public GeomAPI_Interface
   GeomAPI_Circ2d(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
                  const std::shared_ptr<GeomAPI_Dir2d>& theDir, double theRadius);
 
-  /// Creation of circle defined by three points lying on it
-  GEOMAPI_EXPORT
-  GeomAPI_Circ2d(const std::shared_ptr<GeomAPI_Pnt2d>& theFirstPoint,
-                 const std::shared_ptr<GeomAPI_Pnt2d>& theSecondPoint,
-                 const std::shared_ptr<GeomAPI_Pnt2d>& theThirdPoint);
-
   /// Return center of the circle
   GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_Pnt2d> center() const;