summaryrefslogtreecommitdiff
path: root/inc/BRepApprox_SurfaceToolGen.lxx
blob: 2bb47ca02bdaf02db6ed57f13eb233b76ad781d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// File:	BRepApprox_SurfaceToolGen.lxx
// Created:	Thu Jul 20 15:41:41 1995
// Author:	Modelistation
//		<model@meteox>


#include TheSurface_hxx
#include <gp_Pnt.hxx>
#include <gp_Vec.hxx>
#include <gp_Pln.hxx>
#include <gp_Cylinder.hxx>
#include <gp_Cone.hxx>
#include <gp_Torus.hxx>
#include <gp_Sphere.hxx>
#include <gp_Ax1.hxx>
#include <gp_Dir.hxx>
#include <Handle_Geom_BezierSurface.hxx>
#include <Handle_Geom_BSplineSurface.hxx>
#include <Handle_Adaptor3d_HSurface.hxx>
#include <Handle_Adaptor3d_HCurve.hxx>



inline Standard_Real BRepApprox_SurfaceToolGen::FirstUParameter(const TheSurface& Surf){  return Surf.FirstUParameter(); }
inline Standard_Real BRepApprox_SurfaceToolGen::FirstVParameter(const TheSurface& Surf){  return Surf.FirstVParameter();}
inline Standard_Real BRepApprox_SurfaceToolGen::LastUParameter(const TheSurface& Surf){  return Surf.LastUParameter();}
inline Standard_Real BRepApprox_SurfaceToolGen::LastVParameter(const TheSurface& Surf){  return Surf.LastVParameter();}

inline Standard_Integer BRepApprox_SurfaceToolGen::NbUIntervals(const TheSurface& Surf,
							  const GeomAbs_Shape S){
  return Surf.NbUIntervals(S);
}

inline Standard_Integer BRepApprox_SurfaceToolGen::NbVIntervals(const TheSurface& Surf,
							  const GeomAbs_Shape S){
  return Surf.NbVIntervals(S);
}

inline void  BRepApprox_SurfaceToolGen::UIntervals(const TheSurface& Surf,
							TColStd_Array1OfReal& Tab,
							const GeomAbs_Shape S){
  Surf.UIntervals(Tab,S);
}

inline void  BRepApprox_SurfaceToolGen::VIntervals(const TheSurface& Surf,
							TColStd_Array1OfReal& Tab,
							const GeomAbs_Shape S){
  Surf.VIntervals(Tab,S);
}


inline Handle_Adaptor3d_HSurface  BRepApprox_SurfaceToolGen::UTrim(const TheSurface& Surf,
								   const Standard_Real F,
								   const Standard_Real L,
								   const Standard_Real Tol) { 
  return Surf.UTrim(F,L,Tol);
}

inline Handle_Adaptor3d_HSurface BRepApprox_SurfaceToolGen::VTrim(const TheSurface& Surf,
								  const Standard_Real F,
								  const Standard_Real L,
								  const Standard_Real Tol) { 
  return Surf.VTrim(F,L,Tol);
}




inline Standard_Boolean BRepApprox_SurfaceToolGen::IsUClosed(const TheSurface& S)
{
  return S.IsUClosed();
}

inline Standard_Boolean BRepApprox_SurfaceToolGen::IsVClosed(const TheSurface& S)
{
  return S.IsVClosed();
}

inline Standard_Boolean BRepApprox_SurfaceToolGen::IsUPeriodic(const TheSurface& S)
{
  return S.IsUPeriodic();
}

inline Standard_Real BRepApprox_SurfaceToolGen::UPeriod(const TheSurface& S)
{
  return S.UPeriod();
}

inline Standard_Boolean BRepApprox_SurfaceToolGen::IsVPeriodic(const TheSurface& S)
{
  return S.IsVPeriodic();
}

inline Standard_Real BRepApprox_SurfaceToolGen::VPeriod(const TheSurface& S)
{
  return S.VPeriod();
}

inline gp_Pnt BRepApprox_SurfaceToolGen::Value(const TheSurface& S,
					 const Standard_Real U,
					 const Standard_Real V )
{
  return S.Value(U,V);
}

inline void BRepApprox_SurfaceToolGen::D0(const TheSurface& S,
				    const Standard_Real U,
				    const Standard_Real V,
				    gp_Pnt& P)
{
  S.D0(U,V,P);
}

inline void BRepApprox_SurfaceToolGen::D1(const TheSurface& S,
				    const Standard_Real U,
				    const Standard_Real V,
				    gp_Pnt& P,
				    gp_Vec& D1U,
				    gp_Vec& D1V) 
{
  S.D1(U,V,P,D1U,D1V);
}

inline void BRepApprox_SurfaceToolGen::D2(const TheSurface& S,
				    const Standard_Real U,
				    const Standard_Real V,
				    gp_Pnt& P,
				    gp_Vec& D1U,
				    gp_Vec& D1V,
				    gp_Vec& D2U,
				    gp_Vec& D2V,
				    gp_Vec& D2UV)
{
  S.D2(U,V,P,D1U,D1V,D2U,D2V,D2UV);
}

inline void BRepApprox_SurfaceToolGen::D3(const TheSurface& S,
				    const Standard_Real U,
				    const Standard_Real V,
				    gp_Pnt& P,
				    gp_Vec& D1U,
				    gp_Vec& D1V, 
				    gp_Vec& D2U,
				    gp_Vec& D2V,
				    gp_Vec& D2UV,
				    gp_Vec& D3U,
				    gp_Vec& D3V,
				    gp_Vec& D3UUV,
				    gp_Vec& D3UVV)
{
  S.D3(U,V,P,D1U,D1V,D2U,D2V,D2UV,D3U,D3V,D3UUV,D3UVV);
}

inline gp_Vec BRepApprox_SurfaceToolGen::DN(const TheSurface& S,
				      const Standard_Real U,
				      const Standard_Real V,
				      const Standard_Integer Nu,
				      const Standard_Integer Nv)
{
  return S.DN(U,V,Nu,Nv);
}

inline Standard_Real BRepApprox_SurfaceToolGen::UResolution(const TheSurface& S,
						      const Standard_Real R3d)
{
  return S.UResolution(R3d);
}

inline Standard_Real BRepApprox_SurfaceToolGen::VResolution(const TheSurface& S,
						      const Standard_Real R3d)
{
  return S.VResolution(R3d);
}

inline GeomAbs_SurfaceType BRepApprox_SurfaceToolGen::GetType(const TheSurface& S )
{
  return S.GetType();
}

inline gp_Pln BRepApprox_SurfaceToolGen::Plane(const TheSurface& S)
{
  return S.Plane();
}

inline gp_Cylinder BRepApprox_SurfaceToolGen::Cylinder(const TheSurface& S) 
{
  return S.Cylinder();
}

inline gp_Cone BRepApprox_SurfaceToolGen::Cone(const TheSurface& S) 
{
  return S.Cone();
}

inline gp_Sphere BRepApprox_SurfaceToolGen::Sphere(const TheSurface& S) 
{
  return S.Sphere();
}

inline gp_Torus BRepApprox_SurfaceToolGen::Torus(const TheSurface& S) 
{
  return S.Torus();
}


inline Handle(Geom_BezierSurface) BRepApprox_SurfaceToolGen::Bezier(const TheSurface& S) { 
  return(S.Bezier());
}

inline Handle(Geom_BSplineSurface) BRepApprox_SurfaceToolGen::BSpline(const TheSurface& S) { 
  return(S.BSpline());
}


inline gp_Ax1  BRepApprox_SurfaceToolGen::AxeOfRevolution(const TheSurface& S) { 
  return(S.AxeOfRevolution());
}

inline gp_Dir  BRepApprox_SurfaceToolGen::Direction(const TheSurface& S) { 
  return(S.Direction());
}

inline Handle(Adaptor3d_HCurve)  BRepApprox_SurfaceToolGen::BasisCurve(const TheSurface& S) { 
  return(S.BasisCurve());
}