X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.h;h=a375b100ee5586f887442cad012059c43c5a3c93;hb=d2034a988bc73596aab1bb256ddb02ce9ad2bd5a;hp=ea4be9ef62f0aebc8ba02769f4dc99b5321d7c85;hpb=5f1986636f1ce84aa86a466b5682886016588729;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.h b/src/GeomAPI/GeomAPI_Edge.h index ea4be9ef6..a375b100e 100644 --- a/src/GeomAPI/GeomAPI_Edge.h +++ b/src/GeomAPI/GeomAPI_Edge.h @@ -1,50 +1,130 @@ -// File: GeomAPI_Edge.hxx -// Created: 24 Jul 2014 -// Author: Artem ZHIDKOV +// 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_Edge_H_ #define GeomAPI_Edge_H_ #include +class GeomAPI_Pln; class GeomAPI_Pnt; class GeomAPI_Circ; +class GeomAPI_Lin; +class GeomAPI_Ellipse; /**\class GeomAPI_Edge * \ingroup DataModel * \brief Interface to the edge object */ -class GEOMAPI_EXPORT GeomAPI_Edge : public GeomAPI_Shape +class GeomAPI_Edge : public GeomAPI_Shape { public: - /// Creation of empty (null) shape + /// Makes an undefined Edge (no geometry). + GEOMAPI_EXPORT GeomAPI_Edge(); /// Creation of edge by the edge-shape - GeomAPI_Edge(const boost::shared_ptr& theShape); + GEOMAPI_EXPORT + GeomAPI_Edge(const std::shared_ptr& theShape); /// Verifies that the edge is a line + GEOMAPI_EXPORT bool isLine() const; /// Verifies that the edge is a circle + GEOMAPI_EXPORT bool isCircle() const; /// Verifies that the edge is an arc of circle + GEOMAPI_EXPORT bool isArc() const; - /// Returns the first vertex coordinates of the edge - boost::shared_ptr firstPoint(); + /// Verifies that the edge is an arc of circle + GEOMAPI_EXPORT + bool isEllipse() const; + + /// Returns the first vertex coordinates of the edge + GEOMAPI_EXPORT + std::shared_ptr firstPoint(); + + /// Returns the Last vertex coordinates of the edge + GEOMAPI_EXPORT + std::shared_ptr lastPoint(); + + /// Returns a circle if edge is based on the circle curve + GEOMAPI_EXPORT + std::shared_ptr circle() const; - /// Returns the Last vertex coordinates of the edge - boost::shared_ptr lastPoint(); + /// Returns an ellipse if edge is based on the ellipse curve + GEOMAPI_EXPORT + std::shared_ptr ellipse() const; - /// Returns a circle if edge is based on the cirsle curve - boost::shared_ptr circle(); + /// Returns a line if edge is based on the linear curve + GEOMAPI_EXPORT + std::shared_ptr line() const; /// Returns true if the current edge is geometrically equal to the given edge - bool isEqual(boost::shared_ptr theEdge); + GEOMAPI_EXPORT + bool isEqual(const std::shared_ptr theEdge) const; + + /// Returns range of parameter on the curve + GEOMAPI_EXPORT + void getRange(double& theFirst, double& theLast) const; + + /// Returns true, if the edge is fully placed in the specified plane + /// \param thePlane a plane for intersection + GEOMAPI_EXPORT + bool isInPlane(const std::shared_ptr thePlane) const; + + /// Returns list of intersection points if the edge has intersections with the given plane + /// \param thePlane a plane for intersection + GEOMAPI_EXPORT + void intersectWithPlane(const std::shared_ptr thePlane, + std::list >& theResult) const; + + /// Returns edge length. + GEOMAPI_EXPORT + double length() const; + + /// Returns true if the edge is closed (like full circle) + GEOMAPI_EXPORT + bool isClosed() const; + + /// Returns true if the edge is degenerated (has no 3D curve) + GEOMAPI_EXPORT + bool isDegenerated() const; + + GEOMAPI_EXPORT + void setFirstPointTolerance(const double theTolerance); + + GEOMAPI_EXPORT + void setLastPointTolerance(const double theTolerance); + + /// Return middle point on the edge + GEOMAPI_EXPORT + virtual std::shared_ptr middlePoint() const; }; +//! Pointer on attribute object +typedef std::shared_ptr GeomEdgePtr; + #endif