Salome HOME
Issue #148 (reopened) fix: All features implicitly used by constraints are added...
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pln.h
index 49b4a9d5fd5fb194567cdb0ce4e829ef87f13694..5471a34ad86fd4a50531d33e5ec666522c6921b3 100644 (file)
@@ -2,10 +2,10 @@
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef GeomAPI_Pln_HeaderFile
-#define GeomAPI_Pln_HeaderFile
+#ifndef GeomAPI_Pln_H_
+#define GeomAPI_Pln_H_
 
-#include <memory>
+#include <boost/shared_ptr.hpp>
 #include <GeomAPI_Interface.h>
 
 class GeomAPI_Pnt;
@@ -16,21 +16,24 @@ 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 std::shared_ptr<GeomAPI_Pnt>& thePoint,
-              const std::shared_ptr<GeomAPI_Dir>& theNormal);
+  GeomAPI_Pln(const boost::shared_ptr<GeomAPI_Pnt>& thePoint,
+              const boost::shared_ptr<GeomAPI_Dir>& theNormal);
 
-  /// Creation of plane by coefficients A * X + B * Y + C * Z + D = 0.0 
+  /// 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
-  std::shared_ptr<GeomAPI_Pnt> location();
+  boost::shared_ptr<GeomAPI_Pnt> location();
 
   /// Returns a plane normal
-  std::shared_ptr<GeomAPI_Dir> direction();
+  boost::shared_ptr<GeomAPI_Dir> direction();
+
+  /// Returns the plane coefficients (Ax+By+Cz+D=0)
+  void coefficients(double& theA, double& theB, double& theC, double& theD);
 };
 
 #endif