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
|
// File: BRepLProp_SurfaceTool.cxx
// Created: Thu Feb 24 16:44:32 1994
// Author: Laurent BOURESCHE
// <lbo@nonox>
#include <BRepLProp_SurfaceTool.ixx>
//=======================================================================
//function : Value
//purpose :
//=======================================================================
void BRepLProp_SurfaceTool::Value(const BRepAdaptor_Surface& S,
const Standard_Real U,
const Standard_Real V,
gp_Pnt& P)
{
P = S.Value(U, V);
}
//=======================================================================
//function : D1
//purpose :
//=======================================================================
void BRepLProp_SurfaceTool::D1(const BRepAdaptor_Surface& 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);
}
//=======================================================================
//function : D2
//purpose :
//=======================================================================
void BRepLProp_SurfaceTool::D2(const BRepAdaptor_Surface& 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& DUV)
{
S.D2(U, V, P, D1U, D1V, D2U, D2V, DUV);
}
//=======================================================================
//function : DN
//purpose :
//=======================================================================
gp_Vec BRepLProp_SurfaceTool::DN(const BRepAdaptor_Surface& S,
const Standard_Real U,
const Standard_Real V,
const Standard_Integer IU,
const Standard_Integer IV)
{
return S.DN(U, V, IU, IV);
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
Standard_Integer BRepLProp_SurfaceTool::Continuity
(const BRepAdaptor_Surface& S)
{
GeomAbs_Shape s = (GeomAbs_Shape) Min(S.UContinuity(),S.VContinuity());
switch (s) {
case GeomAbs_C0:
return 0;
case GeomAbs_C1:
return 1;
case GeomAbs_C2:
return 2;
case GeomAbs_C3:
return 3;
case GeomAbs_G1:
return 0;
case GeomAbs_G2:
return 0;
case GeomAbs_CN:
return 3;
};
return 0;
}
//=======================================================================
//function : Bounds
//purpose :
//=======================================================================
void BRepLProp_SurfaceTool::Bounds(const BRepAdaptor_Surface& S,
Standard_Real& U1,
Standard_Real& V1,
Standard_Real& U2,
Standard_Real& V2)
{
U1 = S.FirstUParameter();
V1 = S.FirstVParameter();
U2 = S.LastUParameter();
V2 = S.LastVParameter();
}
|