X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Edge.h;h=2827c2f0dbd0b96a4530196094cc4526dfbed245;hb=62d90f590c1d7d2457887fe2ff9b76e07bd9b718;hp=bd186c22b9659cc632cf5884fcd9b8ea19a1fb0e;hpb=4cbd08290dc7a540e3fa93913d484e8336df90d9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Edge.h b/src/GeomAPI/GeomAPI_Edge.h index bd186c22b..2827c2f0d 100644 --- a/src/GeomAPI/GeomAPI_Edge.h +++ b/src/GeomAPI/GeomAPI_Edge.h @@ -1,40 +1,126 @@ -// 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 +* \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 - GeomAPI_Edge(); - - /// Returns whether the shape is a vertex - virtual bool isVertex() const - { return false; } + /// Makes an undefined Edge (no geometry). + GEOMAPI_EXPORT + GeomAPI_Edge(); - /// Returns whether the shape is an edge - virtual bool isEdge() const - { return true; } + /// Creation of edge by the edge-shape + 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; + + /// 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 an ellipse if edge is based on the ellipse curve + GEOMAPI_EXPORT + std::shared_ptr ellipse() const; + + /// 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 + 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 + std::list> + intersectWithPlane(const std::shared_ptr thePlane) 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); }; +//! Pointer on attribute object +typedef std::shared_ptr GeomEdgePtr; + #endif