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
|
// File: BRepLProp_CurveTool.cxx
// Created: Thu Feb 24 11:09:42 1994
// Author: Laurent BOURESCHE
// <lbo@nonox>
#include <BRepLProp_CurveTool.ixx>
//=======================================================================
//function : Value
//purpose :
//=======================================================================
void BRepLProp_CurveTool::Value(const BRepAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt& P)
{
P = C.Value(U);
}
//=======================================================================
//function : D1
//purpose :
//=======================================================================
void BRepLProp_CurveTool::D1(const BRepAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V1)
{
C.D1(U,P,V1);
}
//=======================================================================
//function : D2
//purpose :
//=======================================================================
void BRepLProp_CurveTool::D2(const BRepAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V1,
gp_Vec& V2)
{
C.D2(U,P,V1,V2);
}
//=======================================================================
//function : D3
//purpose :
//=======================================================================
void BRepLProp_CurveTool::D3(const BRepAdaptor_Curve& C,
const Standard_Real U,
gp_Pnt& P,
gp_Vec& V1,
gp_Vec& V2,
gp_Vec& V3)
{
C.D3(U,P,V1,V2,V3);
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
Standard_Integer BRepLProp_CurveTool::Continuity(const BRepAdaptor_Curve& C)
{
GeomAbs_Shape s = C.Continuity();
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 : FirstParameter
//purpose :
//=======================================================================
Standard_Real BRepLProp_CurveTool::FirstParameter(const BRepAdaptor_Curve& C)
{
return C.FirstParameter();
}
//=======================================================================
//function : LastParameter
//purpose :
//=======================================================================
Standard_Real BRepLProp_CurveTool::LastParameter(const BRepAdaptor_Curve& C)
{
return C.LastParameter();
}
|