Salome HOME
Merge remote-tracking branch 'remotes/origin/master'
[modules/shaper.git] / src / GeomAPI / GeomAPI_Edge.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef GeomAPI_Edge_H_
22 #define GeomAPI_Edge_H_
23
24 #include <GeomAPI_Shape.h>
25
26 class GeomAPI_Pln;
27 class GeomAPI_Pnt;
28 class GeomAPI_Circ;
29 class GeomAPI_Lin;
30
31 /**\class GeomAPI_Edge
32 * \ingroup DataModel
33  * \brief Interface to the edge object
34  */
35
36 class GeomAPI_Edge : public GeomAPI_Shape
37 {
38 public:
39    /// Makes an undefined Edge (no geometry).
40   GEOMAPI_EXPORT
41    GeomAPI_Edge();
42
43    /// Creation of edge by the edge-shape
44   GEOMAPI_EXPORT
45    GeomAPI_Edge(const std::shared_ptr<GeomAPI_Shape>& theShape);
46
47   /// Verifies that the edge is a line
48   GEOMAPI_EXPORT
49   bool isLine() const;
50
51   /// Verifies that the edge is a circle
52   GEOMAPI_EXPORT
53   bool isCircle() const;
54
55   /// Verifies that the edge is an arc of circle
56   GEOMAPI_EXPORT
57   bool isArc() const;
58
59   /// Returns the first vertex coordinates of the edge
60   GEOMAPI_EXPORT
61   std::shared_ptr<GeomAPI_Pnt> firstPoint();
62
63   /// Returns the Last vertex coordinates of the edge
64   GEOMAPI_EXPORT
65   std::shared_ptr<GeomAPI_Pnt> lastPoint();
66
67   /// Returns a circle if edge is based on the circle curve
68   GEOMAPI_EXPORT
69   std::shared_ptr<GeomAPI_Circ> circle();
70
71   /// Returns a line if edge is based on the linear curve
72   GEOMAPI_EXPORT
73   std::shared_ptr<GeomAPI_Lin> line();
74
75   /// Returns true if the current edge is geometrically equal to the given edge
76   GEOMAPI_EXPORT
77   bool isEqual(const std::shared_ptr<GeomAPI_Shape> theEdge) const;
78
79   /// Returns range of parameter on the curve
80   GEOMAPI_EXPORT
81   void getRange(double& theFirst, double& theLast) const;
82
83   /// Returns true, if the edge is fully placed in the specified plane
84   GEOMAPI_EXPORT
85   bool isInPlane(const std::shared_ptr<GeomAPI_Pln> thePlane) const;
86
87   /// Returns edge length.
88   GEOMAPI_EXPORT
89   double length() const;
90 };
91
92 #endif
93