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
|
-- File: IntSurf.cdl
-- Created: Mon Aug 24 18:47:01 1992
-- Author: Jacques GOUSSARD
-- <jag@sdsun2>
---Copyright: Matra Datavision 1992
package IntSurf
---Purpose: This package provides resources for
-- all the packages concerning the intersection
-- between surfaces.
---Level: Internal
--
-- All the methods of all the classes of this package are Internal.
--
uses Standard, MMgt, StdFail, GeomAbs, TCollection, gp, TColgp
is
class PntOn2S;
class SequenceOfPntOn2S instantiates Sequence from TCollection
(PntOn2S from IntSurf);
class Couple;
class SequenceOfCouple instantiates Sequence from TCollection
(Couple from IntSurf);
class LineOn2S;
class Quadric;
class QuadricTool;
class PathPoint;
class SequenceOfPathPoint instantiates Sequence from TCollection
(PathPoint from IntSurf);
class PathPointTool;
class InteriorPoint;
class SequenceOfInteriorPoint instantiates Sequence from TCollection
(InteriorPoint from IntSurf);
class InteriorPointTool;
class Transition;
--amv
class ListOfPntOn2S instantiates List from TCollection
(PntOn2S from IntSurf);
enumeration TypeTrans is In, Out, Touch, Undecided;
enumeration Situation is Inside, Outside, Unknown;
MakeTransition(TgFirst,TgSecond: Vec from gp; Normal: Dir from gp;
TFirst,TSecond: out Transition from IntSurf);
---Purpose: Computes the transition of the intersection point
-- between the two lines.
-- TgFirst is the tangent vector of the first line.
-- TgSecond is the tangent vector of the second line.
-- Normal is the direction used to orientate the cross
-- product TgFirst^TgSecond.
-- TFirst is the transition of the point on the first line.
-- TSecond is the transition of the point on the second line.
end IntSurf;
|