X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pln.h;h=8bd9668e7dc407e0020f27bfa8943f4bc106f187;hb=ce9008bdda3fa14d6fa6c61360541249ccf43ce0;hp=c0d0d69f1335fe0a579e372993a150d2739c1b00;hpb=4cbd08290dc7a540e3fa93913d484e8336df90d9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pln.h b/src/GeomAPI/GeomAPI_Pln.h index c0d0d69f1..8bd9668e7 100644 --- a/src/GeomAPI/GeomAPI_Pln.h +++ b/src/GeomAPI/GeomAPI_Pln.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pln.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -5,7 +7,7 @@ #ifndef GeomAPI_Pln_H_ #define GeomAPI_Pln_H_ -#include +#include #include class GeomAPI_Pnt; @@ -16,21 +18,21 @@ class GeomAPI_Dir; * \brief 3D point defined by three coordinates */ -class GEOMAPI_EXPORT GeomAPI_Pln: public GeomAPI_Interface +class GEOMAPI_EXPORT GeomAPI_Pln : public GeomAPI_Interface { -public: + public: /// Creation of plane by the point and normal - GeomAPI_Pln(const boost::shared_ptr& thePoint, - const boost::shared_ptr& theNormal); + GeomAPI_Pln(const std::shared_ptr& thePoint, + const std::shared_ptr& theNormal); /// Creation of plane by coefficients (Ax+By+Cz+D=0) GeomAPI_Pln(const double theA, const double theB, const double theC, const double theD); /// Returns a point of this plane - boost::shared_ptr location(); + std::shared_ptr location(); /// Returns a plane normal - boost::shared_ptr direction(); + std::shared_ptr direction(); /// Returns the plane coefficients (Ax+By+Cz+D=0) void coefficients(double& theA, double& theB, double& theC, double& theD);