X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Circ2d.h;h=58a292c162dd49fec0ce435562a1f5be72526d52;hb=c3abf4152cb6f2fce8a3c528f9104c0058f3cc3c;hp=d4ec763e48391f3fd6f888f21f589ebbae92d24d;hpb=96ff1d1fb2acb842cee193f15492de81060a1d58;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Circ2d.h b/src/GeomAPI/GeomAPI_Circ2d.h index d4ec763e4..58a292c16 100644 --- a/src/GeomAPI/GeomAPI_Circ2d.h +++ b/src/GeomAPI/GeomAPI_Circ2d.h @@ -16,17 +16,16 @@ class GeomAPI_Dir2d; * \brief Circle in 2D */ -class GEOMAPI_EXPORT GeomAPI_Circ2d: public GeomAPI_Interface +class GEOMAPI_EXPORT GeomAPI_Circ2d : public GeomAPI_Interface { -public: + public: /// Creation of circle defined by center point and circle radius GeomAPI_Circ2d(const boost::shared_ptr& theCenter, const boost::shared_ptr& theCirclePoint); /// Creation of circle defined by center point, direction and circle radius GeomAPI_Circ2d(const boost::shared_ptr& theCenter, - const boost::shared_ptr& theDir, - double theRadius); + const boost::shared_ptr& theDir, double theRadius); /// Return center of the circle const boost::shared_ptr center() const; @@ -35,7 +34,8 @@ public: double radius() const; /// Project point on line - const boost::shared_ptr project(const boost::shared_ptr& thePoint) const; + const boost::shared_ptr project( + const boost::shared_ptr& thePoint) const; }; #endif