X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pln.h;h=863a72f617edfe1329eacf23220c0222a08bb000;hb=23119d0e90b60ad1157658b29a23052f7c13d0c3;hp=49b4a9d5fd5fb194567cdb0ce4e829ef87f13694;hpb=6861e302bc1262afc17afc626b050295333a3af1;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pln.h b/src/GeomAPI/GeomAPI_Pln.h index 49b4a9d5f..863a72f61 100644 --- a/src/GeomAPI/GeomAPI_Pln.h +++ b/src/GeomAPI/GeomAPI_Pln.h @@ -1,37 +1,98 @@ -// File: GeomAPI_Pln.hxx -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// -#ifndef GeomAPI_Pln_HeaderFile -#define GeomAPI_Pln_HeaderFile +#ifndef GeomAPI_Pln_H_ +#define GeomAPI_Pln_H_ #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_EXPORT GeomAPI_Pln(const std::shared_ptr& thePoint, const std::shared_ptr& 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_EXPORT GeomAPI_Pln(const double theA, const double theB, const double theC, const double theD); /// Returns a point of this plane - std::shared_ptr location(); + GEOMAPI_EXPORT + std::shared_ptr location() const; /// Returns a plane normal - std::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 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; }; +//! Pointer on the object +typedef std::shared_ptr GeomPlanePtr; + #endif