X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Circ2d.h;h=42e47defaba1018dcc460823afbae2dd476b5ac7;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=d6ad5c7553a1bb606a88d8bb055e66d9863c9dfc;hpb=b9a93c1ac199671649cf2371dfe9fda2bbe65fd0;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Circ2d.h b/src/GeomAPI/GeomAPI_Circ2d.h index d6ad5c755..42e47defa 100644 --- a/src/GeomAPI/GeomAPI_Circ2d.h +++ b/src/GeomAPI/GeomAPI_Circ2d.h @@ -10,8 +10,10 @@ #include #include +class GeomAPI_Ax3; class GeomAPI_Pnt2d; class GeomAPI_Dir2d; +class GeomAPI_Shape; /**\class GeomAPI_Circ2d * \ingroup DataModel @@ -22,31 +24,25 @@ class GeomAPI_Circ2d : public GeomAPI_Interface { public: /// Creation of circle defined by center point and circle radius - GEOMAPI_EXPORT + GEOMAPI_EXPORT GeomAPI_Circ2d(const std::shared_ptr& theCenter, const std::shared_ptr& theCirclePoint); /// Creation of circle defined by center point, direction and circle radius - GEOMAPI_EXPORT + GEOMAPI_EXPORT GeomAPI_Circ2d(const std::shared_ptr& theCenter, const std::shared_ptr& theDir, double theRadius); - /// Creation of circle defined by three points lying on it - GEOMAPI_EXPORT - GeomAPI_Circ2d(const std::shared_ptr& theFirstPoint, - const std::shared_ptr& theSecondPoint, - const std::shared_ptr& theThirdPoint); - /// Return center of the circle - GEOMAPI_EXPORT + GEOMAPI_EXPORT const std::shared_ptr center() const; /// Return radius of the circle - GEOMAPI_EXPORT + GEOMAPI_EXPORT double radius() const; /// Project point on line - GEOMAPI_EXPORT + GEOMAPI_EXPORT const std::shared_ptr project( const std::shared_ptr& thePoint) const;