Salome HOME
Merge remote-tracking branch 'remotes/origin/BR_PlaneGCS' into CodeCleanup
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pln.h
index c1a99f6ef6bae4640b6cb25079f25952973ae12e..e0564557e531a2fbf45d7c4c7599325b54f676b0 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Pln.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
@@ -8,6 +10,7 @@
 #include <memory>
 #include <GeomAPI_Interface.h>
 
+class GeomAPI_Ax3;
 class GeomAPI_Pnt;
 class GeomAPI_Dir;
 
@@ -16,24 +19,37 @@ class GeomAPI_Dir;
  * \brief 3D point defined by three coordinates
  */
 
-class GEOMAPI_EXPORT GeomAPI_Pln : public GeomAPI_Interface
+class GeomAPI_Pln : public GeomAPI_Interface
 {
  public:
+  /// Creation of plane by the axis placement
+  GEOMAPI_EXPORT 
+  GeomAPI_Pln(const std::shared_ptr<GeomAPI_Ax3>& theAxis);
+
   /// Creation of plane by the point and normal
+  GEOMAPI_EXPORT 
   GeomAPI_Pln(const std::shared_ptr<GeomAPI_Pnt>& thePoint,
               const std::shared_ptr<GeomAPI_Dir>& theNormal);
 
   /// Creation of plane by coefficients (Ax+By+Cz+D=0)
+  GEOMAPI_EXPORT 
   GeomAPI_Pln(const double theA, const double theB, const double theC, const double theD);
 
   /// Returns a point of this plane
+  GEOMAPI_EXPORT 
   std::shared_ptr<GeomAPI_Pnt> location();
 
   /// Returns a plane normal
+  GEOMAPI_EXPORT 
   std::shared_ptr<GeomAPI_Dir> direction();
 
   /// Returns the plane coefficients (Ax+By+Cz+D=0)
+  GEOMAPI_EXPORT 
   void coefficients(double& theA, double& theB, double& theC, double& theD);
+
+  /// Returns true if planes are coincident.
+  GEOMAPI_EXPORT
+  bool isCoincident(const std::shared_ptr<GeomAPI_Pln> thePlane, const double theTolerance = 1.e-7);
 };
 
 #endif