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
|
-- File: MAT2d.cdl
-- Created: Tue Jul 6 12:14:54 1993
-- Author: Yves FRICAUD
-- <yfr@phylox>
---Copyright: Matra Datavision 1993
package MAT2d
---Purpose : Package of computation of Bisector locus on a
-- Set of geometrys from Geom2d.
uses
MMgt,
gp,
Geom2d,
TColStd,
TCollection,
TColgp,
TColGeom2d,
MAT,
Bisector
is
deferred class SketchExplorer;
---Purpose: SletchExplorer contains an iterator on a set of geometrys
-- from Geom2d. It's use by BisectingLocus.
generic class BisectingLocus;
---Purpose: Constuction of the map of the bisector locus on a
-- set of geometrys from Geom2d.
class Tool2d;
---Purpose: Tool2d contains the geometrys of the map. Tool2d
-- contains the set of the geometric's methode used for
-- the map's computation.
class Mat2d instantiates Mat from MAT (Tool2d);
class Connexion;
---Purpose: a Connexion links two lines.
class MiniPath;
---Purpose: MiniPath computes one minimum path to link all the
-- lines of a set.
class Circuit;
---Purpose: EquiCircuit gives a Circuit passing by all the lines
-- in a set and all the connexions of the minipath associated.
class CutCurve;
---Purpose: Cuts a curve at the extremas of curvature
-- and at the inflections. Constructs a trimmed
-- Curve for each interval.
class SequenceOfConnexion instantiates Sequence from TCollection
(Connexion from MAT2d);
class DataMapOfIntegerSequenceOfConnexion instantiates DataMap
from TCollection (Integer from Standard,
SequenceOfConnexion from MAT2d,
MapIntegerHasher from TColStd);
class Array2OfConnexion instantiates Array2 from TCollection
(Connexion from MAT2d);
class DataMapOfIntegerBisec instantiates DataMap from TCollection
(Integer from Standard,
Bisec from Bisector,
MapIntegerHasher from TColStd);
class DataMapOfIntegerPnt2d instantiates DataMap from TCollection
(Integer from Standard,
Pnt2d from gp,
MapIntegerHasher from TColStd);
class DataMapOfIntegerVec2d instantiates DataMap from TCollection
(Integer from Standard,
Vec2d from gp,
MapIntegerHasher from TColStd);
class SequenceOfSequenceOfCurve instantiates Sequence from TCollection
(SequenceOfCurve from TColGeom2d);
class SequenceOfSequenceOfGeometry instantiates Sequence from TCollection
(SequenceOfGeometry from TColGeom2d);
class DataMapOfIntegerConnexion instantiates DataMap from TCollection
(Integer from Standard,
Connexion from MAT2d,
MapIntegerHasher from TColStd);
class BiInt;
class MapBiIntHasher;
class DataMapOfBiIntSequenceOfInteger instantiates DataMap
from TCollection (BiInt from MAT2d,
SequenceOfInteger from TColStd,
MapBiIntHasher from MAT2d);
class DataMapOfBiIntInteger instantiates DataMap
from TCollection (BiInt from MAT2d,
Integer from Standard,
MapBiIntHasher from MAT2d);
end MAT2d;
|