blob: 6f50ddf2f44e8888e8d7cc53c2bf485a944bc5a2 (
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
|
-- File: InteriorPointTool.cdl
-- Created: Thu Oct 1 12:05:40 1992
-- Author: Jacques GOUSSARD
-- <jag@sdsun2>
---Copyright: Matra Datavision 1992
class InteriorPointTool from IntSurf
---Purpose: This class provides a tool on the "interior point"
-- that can be used to instantiates the Walking
-- algorithmes (see package IntWalk).
uses Pnt from gp,
Vec from gp,
Dir2d from gp,
InteriorPoint from IntSurf
is
Value3d(myclass; PStart: InteriorPoint from IntSurf)
---Purpose: Returns the 3d coordinates of the starting point.
returns Pnt from gp;
---C++: inline
Value2d(myclass; PStart: InteriorPoint from IntSurf;
U, V: out Real from Standard);
---Purpose: Returns the <U,V> parameters which are associated
-- with <P>
-- it's the parameters which start the marching algorithm
---C++: inline
Direction3d(myclass; PStart: InteriorPoint from IntSurf)
---Purpose: returns the tangent at the intersectin in 3d space
-- associated to <P>
returns Vec from gp;
---C++: inline
Direction2d(myclass; PStart: InteriorPoint from IntSurf)
---Purpose: returns the tangent at the intersectin in the
-- parametric space of the parametrized surface.This tangent
-- is associated to the value2d
returns Dir2d from gp;
---C++: inline
end InteriorPointTool;
|