Salome HOME
Issue #2068: change of arc is by jump even due to smooth mouse movement
[modules/shaper.git] / src / GeomAPI / GeomAPI_Circ2d.h
index 427197a84060e1edec54394488b666450c0b04da..42e47defaba1018dcc460823afbae2dd476b5ac7 100644 (file)
@@ -33,34 +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);
-
-  /// Creation of a circle defined by center and a tangent curve on the given plane
-  GEOMAPI_EXPORT
-  GeomAPI_Circ2d(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
-                 const std::shared_ptr<GeomAPI_Shape>& theTangent,
-                 const std::shared_ptr<GeomAPI_Ax3>&   thePlane);
-
-  /// Creation of a circle passing through or tangent to given entities.
-  /// Supported items are GeomAPI_Pnt2d or GeomAPI_Shape
-  GEOMAPI_EXPORT
-  GeomAPI_Circ2d(const std::shared_ptr<GeomAPI_Interface>& theEntity1,
-                 const std::shared_ptr<GeomAPI_Interface>& theEntity2,
-                 const std::shared_ptr<GeomAPI_Interface>& theEntity3,
-                 const std::shared_ptr<GeomAPI_Ax3>&       thePlane);
-
-  /// Creation of a circle with given radius passing through or tangent to two entities.
-  /// Supported items are GeomAPI_Pnt2d or GeomAPI_Shape
-  GEOMAPI_EXPORT
-  GeomAPI_Circ2d(const std::shared_ptr<GeomAPI_Interface>& theEntity1,
-                 const std::shared_ptr<GeomAPI_Interface>& theEntity2,
-                 const double                              theRadius,
-                 const std::shared_ptr<GeomAPI_Ax3>&       thePlane);
-
   /// Return center of the circle
   GEOMAPI_EXPORT
   const std::shared_ptr<GeomAPI_Pnt2d> center() const;