Salome HOME
updated copyright message
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ICanonicalRecognition.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _GEOMImpl_ICanonicalRecognition_HXX_
24 #define _GEOMImpl_ICanonicalRecognition_HXX_
25
26 #include "GEOM_IOperations.hxx"
27
28 #include <GEOM_Field.hxx>
29
30 #include <TColStd_HSequenceOfTransient.hxx>
31 #include <TColStd_HArray1OfExtendedString.hxx>
32
33 #include <gp_Cone.hxx>
34 #include <gp_Cylinder.hxx>
35 #include <gp_Pln.hxx>
36 #include <gp_Sphere.hxx>
37 #include <gp_Circ.hxx>
38 #include <gp_Elips.hxx>
39 #include <gp_Lin.hxx>
40
41 #include <vector>
42
43 class GEOM_Object;
44
45 class GEOMImpl_ICanonicalRecognition : public GEOM_IOperations {
46  public:
47   Standard_EXPORT GEOMImpl_ICanonicalRecognition(GEOM_Engine* theEngine);
48   Standard_EXPORT ~GEOMImpl_ICanonicalRecognition();
49
50   /*!
51    * \brief Check if the shape is planar
52    */
53   Standard_EXPORT bool isPlane(const Handle(GEOM_Object)& theShape, double theTolerance,
54     gp_Pln& thePln);
55
56   /*!
57    * \brief Check if shape is spherical
58    */
59   Standard_EXPORT bool isSphere(const Handle(GEOM_Object)& theShape, double theTolerance,
60     gp_Sphere& theSphere);
61
62   /*!
63    * \brief Check if shape is conical
64    */
65   Standard_EXPORT bool isCone(const Handle(GEOM_Object)& theShape, double theTolerance,
66     gp_Cone& theCone);
67
68   /*!
69    * \brief Check if shape is cylinder
70    */
71   Standard_EXPORT bool isCylinder(const Handle(GEOM_Object)& theShape, double theTolerance,
72     gp_Cylinder& theCylinder);
73
74   /*!
75    * \brief Check if edge / wire is line
76    */
77   Standard_EXPORT bool isLine(const Handle(GEOM_Object)& theEdge, double theTolerance,
78     gp_Lin& theLine);
79
80   /*!
81    * \brief Check if edge / wire is circle
82    */
83   Standard_EXPORT bool isCircle(const Handle(GEOM_Object)& theEdge, double theTolerance,
84     gp_Circ& theCircle);
85
86   /*!
87    * \brief Check if edge / wire is ellipse
88    */
89   Standard_EXPORT bool isEllipse(const Handle(GEOM_Object)& theEdge, double theTolerance,
90     gp_Elips& theElips);
91
92 };
93
94 #endif