0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / HLRBRep / HLRBRep_ThePolyhedronOfInterCSurf.hxx
1 // Created on: 1992-10-14
2 // Created by: Christophe MARION
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _HLRBRep_ThePolyhedronOfInterCSurf_HeaderFile
18 #define _HLRBRep_ThePolyhedronOfInterCSurf_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <Standard_Integer.hxx>
25 #include <Bnd_Box.hxx>
26 #include <Bnd_HArray1OfBox.hxx>
27 #include <TColStd_Array1OfReal.hxx>
28 class Standard_OutOfRange;
29 class HLRBRep_SurfaceTool;
30 class gp_Pnt;
31 class Bnd_Box;
32 class gp_XYZ;
33
34 class HLRBRep_ThePolyhedronOfInterCSurf 
35 {
36 public:
37
38   DEFINE_STANDARD_ALLOC
39
40   Standard_EXPORT HLRBRep_ThePolyhedronOfInterCSurf(const Standard_Address& Surface, const Standard_Integer nbdU, const Standard_Integer nbdV, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2);
41   
42   Standard_EXPORT HLRBRep_ThePolyhedronOfInterCSurf(const Standard_Address& Surface, const TColStd_Array1OfReal& Upars, const TColStd_Array1OfReal& Vpars);
43   
44   Standard_EXPORT void Destroy();
45 ~HLRBRep_ThePolyhedronOfInterCSurf()
46 {
47   Destroy();
48 }
49   
50   Standard_EXPORT void DeflectionOverEstimation (const Standard_Real flec);
51   
52   Standard_EXPORT Standard_Real DeflectionOnTriangle (const Standard_Address& Surface, const Standard_Integer Index) const;
53   
54   Standard_EXPORT void UMinSingularity (const Standard_Boolean Sing);
55   
56   Standard_EXPORT void UMaxSingularity (const Standard_Boolean Sing);
57   
58   Standard_EXPORT void VMinSingularity (const Standard_Boolean Sing);
59   
60   Standard_EXPORT void VMaxSingularity (const Standard_Boolean Sing);
61   
62   //! get the size of the discretization.
63   Standard_EXPORT void Size (Standard_Integer& nbdu, Standard_Integer& nbdv) const;
64   
65   //! Give the number of triangles in this double array of
66   Standard_EXPORT Standard_Integer NbTriangles() const;
67   
68   //! Give the 3 points of the triangle of address Index in
69   //! the double array of triangles.
70   Standard_EXPORT void Triangle (const Standard_Integer Index, Standard_Integer& P1, Standard_Integer& P2, Standard_Integer& P3) const;
71   
72   //! Give the address Tricon of the triangle connexe to the
73   //! triangle of address Triang by the edge Pivot Pedge and
74   //! the third point of this connexe triangle. When we are
75   //! on a free edge TriCon==0 but the function return the
76   //! value of the triangle in the other side of Pivot on
77   //! the free edge. Used to turn around a vertex.
78   Standard_EXPORT Standard_Integer TriConnex (const Standard_Integer Triang, const Standard_Integer Pivot, const Standard_Integer Pedge, Standard_Integer& TriCon, Standard_Integer& OtherP) const;
79   
80   //! Give the number of point in the double array of
81   //! triangles ((nbdu+1)*(nbdv+1)).
82   Standard_EXPORT Standard_Integer NbPoints() const;
83   
84   //! Set the value of a field of the double array of
85   //! points.
86   Standard_EXPORT void Point (const gp_Pnt& thePnt, const Standard_Integer lig, const Standard_Integer col, const Standard_Real U, const Standard_Real V);
87   
88   //! Give the point of index i in the MaTriangle.
89   Standard_EXPORT const gp_Pnt& Point (const Standard_Integer Index, Standard_Real& U, Standard_Real& V) const;
90   
91   //! Give the point of index i in the MaTriangle.
92   Standard_EXPORT const gp_Pnt& Point (const Standard_Integer Index) const;
93   
94   //! Give the point of index i in the MaTriangle.
95   Standard_EXPORT void Point (const Standard_Integer Index, gp_Pnt& P) const;
96   
97   //! Give the bounding box of the MaTriangle.
98   Standard_EXPORT const Bnd_Box& Bounding() const;
99   
100   //! Compute the array of boxes. The box <n> corresponding
101   //! to the triangle <n>.
102   Standard_EXPORT void FillBounding();
103   
104   //! Give the array of boxes. The box <n> corresponding
105   //! to the triangle <n>.
106   Standard_EXPORT const Handle(Bnd_HArray1OfBox)& ComponentsBounding() const;
107   
108   Standard_EXPORT Standard_Real DeflectionOverEstimation() const;
109   
110   Standard_EXPORT Standard_Boolean HasUMinSingularity() const;
111   
112   Standard_EXPORT Standard_Boolean HasUMaxSingularity() const;
113   
114   Standard_EXPORT Standard_Boolean HasVMinSingularity() const;
115   
116   Standard_EXPORT Standard_Boolean HasVMaxSingularity() const;
117   
118   //! Give the plane equation of the triangle of address Triang.
119   Standard_EXPORT void PlaneEquation (const Standard_Integer Triang, gp_XYZ& NormalVector, Standard_Real& PolarDistance) const;
120   
121   //! Give the plane equation of the triangle of address Triang.
122   Standard_EXPORT Standard_Boolean Contain (const Standard_Integer Triang, const gp_Pnt& ThePnt) const;
123   
124   Standard_EXPORT void Parameters (const Standard_Integer Index, Standard_Real& U, Standard_Real& V) const;
125   
126   //! This method returns true if the edge based on points with
127   //! indices Index1 and Index2 represents a boundary edge. It is
128   //! necessary to take into account the boundary deflection for
129   //! this edge.
130   Standard_EXPORT Standard_Boolean IsOnBound (const Standard_Integer Index1, const Standard_Integer Index2) const;
131   
132   //! This method returns a border deflection.
133     Standard_Real GetBorderDeflection() const;
134   
135   Standard_EXPORT void Dump() const;
136
137 protected:
138
139   
140   Standard_EXPORT void Init (const Standard_Address& Surface, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2);
141   
142   Standard_EXPORT void Init (const Standard_Address& Surface, const TColStd_Array1OfReal& Upars, const TColStd_Array1OfReal& Vpars);
143
144 private:
145
146   //! This method computes and returns a deflection of isoline
147   //! of given parameter on Surface.
148   Standard_EXPORT Standard_Real ComputeBorderDeflection (const Standard_Address& Surface, const Standard_Real Parameter, const Standard_Real PMin, const Standard_Real PMax, const Standard_Boolean isUIso) const;
149
150 private:
151
152   Standard_Integer nbdeltaU;
153   Standard_Integer nbdeltaV;
154   Bnd_Box TheBnd;
155   Handle(Bnd_HArray1OfBox) TheComponentsBnd;
156   Standard_Real TheDeflection;
157   Standard_Address C_MyPnts;
158   Standard_Address C_MyU;
159   Standard_Address C_MyV;
160   Standard_Boolean UMinSingular;
161   Standard_Boolean UMaxSingular;
162   Standard_Boolean VMinSingular;
163   Standard_Boolean VMaxSingular;
164   Standard_Real TheBorderDeflection;
165   Standard_Address C_MyIsOnBounds;
166
167 };
168
169 #define ThePSurface Standard_Address
170 #define ThePSurface_hxx <Standard_Address.hxx>
171 #define ThePSurfaceTool HLRBRep_SurfaceTool
172 #define ThePSurfaceTool_hxx <HLRBRep_SurfaceTool.hxx>
173 #define IntCurveSurface_Polyhedron HLRBRep_ThePolyhedronOfInterCSurf
174 #define IntCurveSurface_Polyhedron_hxx <HLRBRep_ThePolyhedronOfInterCSurf.hxx>
175
176 #include <IntCurveSurface_Polyhedron.lxx>
177
178 #undef ThePSurface
179 #undef ThePSurface_hxx
180 #undef ThePSurfaceTool
181 #undef ThePSurfaceTool_hxx
182 #undef IntCurveSurface_Polyhedron
183 #undef IntCurveSurface_Polyhedron_hxx
184
185 #endif // _HLRBRep_ThePolyhedronOfInterCSurf_HeaderFile