Salome HOME
0021434: Boolean operations generate a shape with big vertex tolerance.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_Tools.hxx
1 // Copyright (C) 2007-2011  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.
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 #ifndef _GEOMAlgo_Tools_HeaderFile
23 #define _GEOMAlgo_Tools_HeaderFile
24
25 #include <Basics_OCCTVersion.hxx>
26
27 #ifndef _Standard_HeaderFile
28 #include <Standard.hxx>
29 #endif
30 #ifndef _Standard_Macro_HeaderFile
31 #include <Standard_Macro.hxx>
32 #endif
33
34 #ifndef _Standard_Boolean_HeaderFile
35 #include <Standard_Boolean.hxx>
36 #endif
37 #ifndef _Standard_Integer_HeaderFile
38 #include <Standard_Integer.hxx>
39 #endif
40 #ifndef _Standard_Real_HeaderFile
41 #include <Standard_Real.hxx>
42 #endif
43
44 #if OCC_VERSION_LARGE > 0x06050200
45 #ifndef _Handle_IntTools_Context_HeaderFile
46 #include <Handle_IntTools_Context.hxx>
47 #endif
48 #endif
49
50 #ifndef _Handle_Geom_Surface_HeaderFile
51 #include <Handle_Geom_Surface.hxx>
52 #endif
53
54 class TopoDS_Shape;
55 class GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape;
56 class IntTools_Context;
57 class TopTools_ListOfShape;
58 class TopTools_IndexedDataMapOfShapeListOfShape;
59 class gp_Pnt;
60 class TopoDS_Edge;
61 class TopoDS_Face;
62 class Geom_Surface;
63
64
65 class GEOMAlgo_Tools {
66
67 public:
68
69   void* operator new(size_t,void* anAddress)
70   {
71     return anAddress;
72   }
73   void* operator new(size_t size)
74   {
75     return Standard::Allocate(size);
76   }
77   void  operator delete(void *anAddress)
78   {
79     if (anAddress) Standard::Free((Standard_Address&)anAddress);
80   }
81
82   Standard_EXPORT static  Standard_Boolean IsCompositeShape(const TopoDS_Shape& aS);
83
84   Standard_EXPORT static  Standard_Integer RefineSDShapes (GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape& aMSD,
85                                                            const Standard_Real aTol,
86 #if OCC_VERSION_LARGE > 0x06050200
87                                                            const Handle(IntTools_Context)& aCtx);
88 #else
89                                                            IntTools_Context& aCtx);
90 #endif
91
92   Standard_EXPORT static  Standard_Integer FindSDShapes (const TopTools_ListOfShape& aLE,
93                                                          const Standard_Real aTol,
94                                                          TopTools_IndexedDataMapOfShapeListOfShape& aMEE,
95 #if OCC_VERSION_LARGE > 0x06050200
96                                                          const Handle(IntTools_Context)& aCtx);
97 #else
98                                                          IntTools_Context& aCtx);
99 #endif
100
101   Standard_EXPORT static  Standard_Integer FindSDShapes (const TopoDS_Shape& aE1,
102                                                          const TopTools_ListOfShape& aLE,
103                                                          const Standard_Real aTol,
104                                                          TopTools_ListOfShape& aLESD,
105 #if OCC_VERSION_LARGE > 0x06050200
106                                                          const Handle(IntTools_Context)& aCtx);
107 #else
108                                                          IntTools_Context& aCtx);
109 #endif
110
111   Standard_EXPORT static  Standard_Boolean ProjectPointOnShape (const gp_Pnt& aP1,
112                                                                 const TopoDS_Shape& aS,
113                                                                 gp_Pnt& aP2,
114 #if OCC_VERSION_LARGE > 0x06050200
115                                                                 const Handle(IntTools_Context)& aCtx);
116 #else
117                                                                 IntTools_Context& aCtx);
118 #endif
119
120   Standard_EXPORT static  void PointOnShape(const TopoDS_Shape& aS,gp_Pnt& aP3D);
121
122   Standard_EXPORT static  void PointOnEdge(const TopoDS_Edge& aE,gp_Pnt& aP3D);
123
124   Standard_EXPORT static  void PointOnEdge(const TopoDS_Edge& aE,const Standard_Real aT,gp_Pnt& aP3D);
125
126   Standard_EXPORT static  void PointOnFace(const TopoDS_Face& aF,gp_Pnt& aP3D);
127
128   Standard_EXPORT static  void PointOnFace(const TopoDS_Face& aF,const Standard_Real aU,const Standard_Real aV,gp_Pnt& aP3D);
129
130   Standard_EXPORT static  void RefinePCurveForEdgeOnFace(const TopoDS_Edge& aE,const TopoDS_Face& aF,const Standard_Real aU1,const Standard_Real aU2);
131
132   Standard_EXPORT static  Standard_Boolean IsUPeriodic(const Handle(Geom_Surface)& aS);
133
134   Standard_EXPORT static  Standard_Boolean CorrectWires(const TopoDS_Shape& aS);
135
136   Standard_EXPORT static  Standard_Integer BuildPCurveForEdgeOnFace (const TopoDS_Edge& aE,
137                                                                      const TopoDS_Edge& aEold,
138                                                                      const TopoDS_Face& aF,
139 #if OCC_VERSION_LARGE > 0x06050200
140                                                                      const Handle(IntTools_Context)& aCtx);
141 #else
142                                                                      IntTools_Context& aCtx);
143 #endif
144
145 protected:
146
147 private:
148
149 };
150
151 // other Inline functions and methods (like "C++: function call" methods)
152
153 #endif