X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pln.h;h=704c2a0ce0ce0c9b7fcbd1b25529edede0ddeeb0;hb=857f94a96eb62e69746221f2b919335140b117c6;hp=217f743312f92f2cbc4ff700e2eac668387bd77b;hpb=c1bc28d34120d2206f9db487718630c3da7acde7;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pln.h b/src/GeomAPI/GeomAPI_Pln.h index 217f74331..704c2a0ce 100644 --- a/src/GeomAPI/GeomAPI_Pln.h +++ b/src/GeomAPI/GeomAPI_Pln.h @@ -1,39 +1,84 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pln.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef GeomAPI_Pln_HeaderFile -#define GeomAPI_Pln_HeaderFile +#ifndef GeomAPI_Pln_H_ +#define GeomAPI_Pln_H_ -#include +#include #include +class GeomAPI_Ax3; class GeomAPI_Pnt; class GeomAPI_Dir; +class GeomAPI_Lin; /**\class GeomAPI_Pln * \ingroup DataModel * \brief 3D point defined by three coordinates */ -class GEOMAPI_EXPORT GeomAPI_Pln: public GeomAPI_Interface +class GeomAPI_Pln : public GeomAPI_Interface { -public: + public: + /// Creation of plane by the axis placement + GEOMAPI_EXPORT + GeomAPI_Pln(const std::shared_ptr& theAxis); + /// Creation of plane by the point and normal - GeomAPI_Pln(const boost::shared_ptr& thePoint, - const boost::shared_ptr& theNormal); + GEOMAPI_EXPORT + GeomAPI_Pln(const std::shared_ptr& thePoint, + const std::shared_ptr& 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 - boost::shared_ptr location(); + GEOMAPI_EXPORT + std::shared_ptr location() const; /// Returns a plane normal - boost::shared_ptr direction(); + GEOMAPI_EXPORT + std::shared_ptr direction() const; + + /// Returns a plane x direction + GEOMAPI_EXPORT + std::shared_ptr xDirection() const; /// 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 thePlane, const double theTolerance = 1.e-7); + + /// Returns true if plane is parallel to theLine. + GEOMAPI_EXPORT + bool isParallel(const std::shared_ptr theLine); + + /// Returns intersection point or empty if no intersections + GEOMAPI_EXPORT + std::shared_ptr intersect(const std::shared_ptr& theLine) const; + + /// Returns projection of the given point onto the plane + GEOMAPI_EXPORT + std::shared_ptr project(const std::shared_ptr& thePoint) const; + + /// \return distance between planes. + GEOMAPI_EXPORT + double distance(const std::shared_ptr thePlane) const; + + /// Translates the plane along direction theDir on distance theDist + GEOMAPI_EXPORT + void translate(const std::shared_ptr theDir, const double theDist); + + /// \return intersection line of two planes. Empty if they are parallel. + GEOMAPI_EXPORT + std::shared_ptr intersect(const std::shared_ptr thePlane) const; }; #endif