SHAPER  9.13.0
GeomAPI_Angle2d.h
1 // Copyright (C) 2014-2024 CEA, EDF
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 email : webmaster.salome@opencascade.com
18 //
19 
20 #ifndef GeomAPI_Angle2d_H_
21 #define GeomAPI_Angle2d_H_
22 
23 #include <GeomAPI_Interface.h>
24 
25 class GeomAPI_Lin2d;
26 class GeomAPI_Pnt2d;
27 
32 {
33 public:
35  GEOMAPI_EXPORT
36  GeomAPI_Angle2d(const std::shared_ptr<GeomAPI_Pnt2d>& theStartLine1,
37  const std::shared_ptr<GeomAPI_Pnt2d>& theEndLine1,
38  const std::shared_ptr<GeomAPI_Pnt2d>& theStartLine2,
39  const std::shared_ptr<GeomAPI_Pnt2d>& theEndLine2);
41  GEOMAPI_EXPORT
42  GeomAPI_Angle2d(const std::shared_ptr<GeomAPI_Lin2d>& theLine1, bool theReversed1,
43  const std::shared_ptr<GeomAPI_Lin2d>& theLine2, bool theReversed2);
45  GEOMAPI_EXPORT
46  GeomAPI_Angle2d(const std::shared_ptr<GeomAPI_Pnt2d>& theCenter,
47  const std::shared_ptr<GeomAPI_Pnt2d>& thePoint1,
48  const std::shared_ptr<GeomAPI_Pnt2d>& thePoint2);
49 
51  GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Pnt2d> center();
53  GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Pnt2d> firstPoint();
55  GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Pnt2d> secondPoint();
56 
58  GEOMAPI_EXPORT double angleDegree();
60  GEOMAPI_EXPORT double angleRadian();
61 
65  GEOMAPI_EXPORT bool isReversed(int theIndex);
66 };
67 
68 #endif
69 
Build an angle in plane.
Definition: GeomAPI_Angle2d.h:32
GEOMAPI_EXPORT std::shared_ptr< GeomAPI_Pnt2d > firstPoint()
Returns point on the first edge.
Definition: GeomAPI_Angle2d.cpp:125
GEOMAPI_EXPORT std::shared_ptr< GeomAPI_Pnt2d > center()
Returns central point of the angle.
Definition: GeomAPI_Angle2d.cpp:119
GEOMAPI_EXPORT double angleDegree()
Returns value of the angle in degrees.
Definition: GeomAPI_Angle2d.cpp:137
GEOMAPI_EXPORT std::shared_ptr< GeomAPI_Pnt2d > secondPoint()
Returns point on the second edge.
Definition: GeomAPI_Angle2d.cpp:131
GEOMAPI_EXPORT bool isReversed(int theIndex)
Returns true if the line is reversed during angle calculation.
Definition: GeomAPI_Angle2d.cpp:150
GEOMAPI_EXPORT double angleRadian()
Returns value of the angle in radians.
Definition: GeomAPI_Angle2d.cpp:142
GEOMAPI_EXPORT GeomAPI_Angle2d(const std::shared_ptr< GeomAPI_Pnt2d > &theStartLine1, const std::shared_ptr< GeomAPI_Pnt2d > &theEndLine1, const std::shared_ptr< GeomAPI_Pnt2d > &theStartLine2, const std::shared_ptr< GeomAPI_Pnt2d > &theEndLine2)
Creation of an angle defined by two lines' start, end points.
Definition: GeomAPI_Angle2d.cpp:98
General base class for all interfaces in this package.
Definition: GeomAPI_Interface.h:38
Line in 2D.
Definition: GeomAPI_Lin2d.h:35
2D point defined by two coordinates
Definition: GeomAPI_Pnt2d.h:36