Version: 9.16.0
GEOMImpl_ICanonicalRecognition.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 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
43class GEOM_Object;
44
46 public:
47 Standard_EXPORT GEOMImpl_ICanonicalRecognition(GEOM_Engine* theEngine);
48 Standard_EXPORT ~GEOMImpl_ICanonicalRecognition();
49
53 Standard_EXPORT bool isPlane(const Handle(GEOM_Object)& theShape, double theTolerance,
54 gp_Pln& thePln);
55
59 Standard_EXPORT bool isSphere(const Handle(GEOM_Object)& theShape, double theTolerance,
60 gp_Sphere& theSphere);
61
65 Standard_EXPORT bool isCone(const Handle(GEOM_Object)& theShape, double theTolerance,
66 gp_Cone& theCone);
67
71 Standard_EXPORT bool isCylinder(const Handle(GEOM_Object)& theShape, double theTolerance,
72 gp_Cylinder& theCylinder);
73
77 Standard_EXPORT bool isLine(const Handle(GEOM_Object)& theEdge, double theTolerance,
78 gp_Lin& theLine);
79
83 Standard_EXPORT bool isCircle(const Handle(GEOM_Object)& theEdge, double theTolerance,
84 gp_Circ& theCircle);
85
89 Standard_EXPORT bool isEllipse(const Handle(GEOM_Object)& theEdge, double theTolerance,
90 gp_Elips& theElips);
91
92};
93
94#endif
Handle(TColStd_HSequenceOfTransient) AdvancedEngine_IOperations
Create a T-shape object with specified caracteristics for the main and the incident pipes (radius,...
Definition: AdvancedEngine_IOperations.cxx:1907
Definition: GEOMImpl_ICanonicalRecognition.hxx:45
Standard_EXPORT bool isEllipse(const Handle(GEOM_Object)&theEdge, double theTolerance, gp_Elips &theElips)
Check if edge / wire is ellipse.
Definition: GEOMImpl_ICanonicalRecognition.cxx:240
Standard_EXPORT bool isSphere(const Handle(GEOM_Object)&theShape, double theTolerance, gp_Sphere &theSphere)
Check if shape is spherical.
Definition: GEOMImpl_ICanonicalRecognition.cxx:95
Standard_EXPORT bool isPlane(const Handle(GEOM_Object)&theShape, double theTolerance, gp_Pln &thePln)
Check if the shape is planar.
Definition: GEOMImpl_ICanonicalRecognition.cxx:67
Standard_EXPORT ~GEOMImpl_ICanonicalRecognition()
Definition: GEOMImpl_ICanonicalRecognition.cxx:57
Standard_EXPORT bool isCircle(const Handle(GEOM_Object)&theEdge, double theTolerance, gp_Circ &theCircle)
Check if edge / wire is circle.
Definition: GEOMImpl_ICanonicalRecognition.cxx:211
Standard_EXPORT bool isLine(const Handle(GEOM_Object)&theEdge, double theTolerance, gp_Lin &theLine)
Check if edge / wire is line.
Definition: GEOMImpl_ICanonicalRecognition.cxx:182
Standard_EXPORT GEOMImpl_ICanonicalRecognition(GEOM_Engine *theEngine)
Definition: GEOMImpl_ICanonicalRecognition.cxx:46
Standard_EXPORT bool isCylinder(const Handle(GEOM_Object)&theShape, double theTolerance, gp_Cylinder &theCylinder)
Check if shape is cylinder.
Definition: GEOMImpl_ICanonicalRecognition.cxx:153
Standard_EXPORT bool isCone(const Handle(GEOM_Object)&theShape, double theTolerance, gp_Cone &theCone)
Check if shape is conical.
Definition: GEOMImpl_ICanonicalRecognition.cxx:124
Definition: GEOM_Engine.hxx:91
Definition: GEOM_IOperations.hxx:40