Salome HOME
bos #29469: Advanced geometry features: Detect type of shape
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ICanonicalRecognition.hxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, 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 <vector>
34
35 class GEOM_Object;
36
37 class GEOMImpl_ICanonicalRecognition : public GEOM_IOperations {
38  public:
39   Standard_EXPORT GEOMImpl_ICanonicalRecognition(GEOM_Engine* theEngine);
40   Standard_EXPORT ~GEOMImpl_ICanonicalRecognition();
41
42   /*!
43    * \brief Check if the shape is planar
44    */
45   Standard_EXPORT bool isPlane(const Handle(GEOM_Object)& theShape, double theTolerance,
46     gp_Pln& thePln);
47
48   /*!
49    * \brief Check if shape is spherical
50    */
51   Standard_EXPORT bool isSphere(const Handle(GEOM_Object)& theShape, double theTolerance,
52     gp_Sphere& theSphere);
53
54   /*!
55    * \brief Check if shape is conical
56    */
57   Standard_EXPORT bool isCone(const Handle(GEOM_Object)& theShape, double theTolerance,
58     gp_Cone& theCone);
59
60   /*!
61    * \brief Check if shape is cylinder
62    */
63   Standard_EXPORT bool isCylinder(const Handle(GEOM_Object)& theShape, double theTolerance,
64     gp_Cylinder& theCylinder);
65
66   /*!
67    * \brief Check if edge / wire is line
68    */
69   Standard_EXPORT bool isLine(const Handle(GEOM_Object)& theEdge, double theTolerance,
70     gp_Lin& theLine);
71
72   /*!
73    * \brief Check if edge / wire is circle
74    */
75   Standard_EXPORT bool isCircle(const Handle(GEOM_Object)& theEdge, double theTolerance,
76     gp_Circ& theCircle);
77
78   /*!
79    * \brief Check if edge / wire is ellipse
80    */
81   Standard_EXPORT bool isEllipse(const Handle(GEOM_Object)& theEdge, double theTolerance,
82     gp_Elips& theElips);
83
84 };
85
86 #endif