blob: 87edbb7e9eb29c1c9f6237d7d8e1faba57ea2d64 (
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
|
-- File: PColPGeom.cdl
-- Created: Thu Jun 3 16:46:15 1993
-- Author: fid
-- <model@mastox>
-- Copyright: Matra Datavision 1993
package PColPGeom
---Purpose : This package is used to instantiate of several
-- generic classes from the package PCollection with
-- objects from the package PGeom.
uses PCollection, PGeom
is
class HArray1OfCurve
instantiates HArray1 from PCollection (Curve from PGeom);
class HArray1OfBoundedCurve
instantiates HArray1 from PCollection (BoundedCurve from PGeom);
class HArray1OfBezierCurve
instantiates HArray1 from PCollection (BezierCurve from PGeom);
class HArray1OfBSplineCurve
instantiates HArray1 from PCollection (BSplineCurve from PGeom);
class HArray1OfSurface
instantiates HArray1 from PCollection (Surface from PGeom);
class HArray1OfBoundedSurface
instantiates HArray1 from PCollection (BoundedSurface from PGeom);
class HArray2OfSurface
instantiates HArray2 from PCollection (Surface from PGeom);
class HArray2OfBoundedSurface
instantiates HArray2 from PCollection (BoundedSurface from PGeom);
class HArray2OfBezierSurface
instantiates HArray2 from PCollection (BezierSurface from PGeom);
class HArray2OfBSplineSurface
instantiates HArray2 from PCollection (BSplineSurface from PGeom);
-- class HSequenceOfCurve
-- instantiates HSequence from PCollection (Curve from PGeom);
-- class HSequenceOfBoundedCurve
-- instantiates HSequence from PCollection (BoundedCurve from PGeom);
-- class HSequenceOfSurface
-- instantiates HSequence from PCollection (Surface from PGeom);
-- class HSequenceOfBoundedSurface
-- instantiates HSequence from PCollection (BoundedSurface from PGeom);
end PColPGeom;
|