blob: 5e086a5b751efd0220ea8c08237f2aa6bdbd0a41 (
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
|
inline const gp_Pnt& IntSurf_InteriorPoint::Value () const {
return point;
}
inline void IntSurf_InteriorPoint::Parameters (Standard_Real& U,
Standard_Real& V) const {
U = paramu;
V = paramv;
}
inline Standard_Real IntSurf_InteriorPoint::UParameter () const {
return paramu;
}
inline Standard_Real IntSurf_InteriorPoint::VParameter () const {
return paramv;
}
inline const gp_Vec& IntSurf_InteriorPoint::Direction () const {
return direc;
}
inline const gp_Vec2d& IntSurf_InteriorPoint::Direction2d () const {
return direc2d;
}
|