blob: 3ad33ea1e8cdcba277fefa1b71dbb144691b3558 (
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
|
-- File: IntRes2d.cdl
-- Created: Fri Apr 3 14:41:30 1992
-- Author: Laurent BUCHARD
-- <lbr@topsn2>
---Copyright: Matra Datavision 1992
package IntRes2d
---Purpose: This package provides the definition of the results of
-- the intersection between 2D curves and the definition
-- of a domain on a 2D curve.
---Level: Public
--
-- All the methods of all the classes of this package are public.
--
uses
Standard, TCollection, gp, StdFail
is
class IntersectionPoint;
class IntersectionSegment;
class Transition;
class Domain;
deferred class Intersection;
enumeration Position is Head,Middle,End;
enumeration TypeTrans is In,Out,Touch,Undecided;
enumeration Situation is Inside, Outside, Unknown;
class SequenceOfIntersectionPoint instantiates
Sequence from TCollection (IntersectionPoint);
class SequenceOfIntersectionSegment instantiates
Sequence from TCollection (IntersectionSegment);
end IntRes2d;
|