8cf08e8e87890cb8170a30f39dcab347c540cab4
[occt.git] / src / PColgp / PColgp.cdl
1 -- Created on: 1993-03-22
2 -- Created by: Philippe DAUTRY
3 -- Copyright (c) 1993-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 package PColgp  
18
19         ---Purpose :   This package  provides   some instantiations of
20         --         generic classes  from PCollection with objects from gp. 
21          
22 uses PCollection, gp
23
24 is
25
26
27
28     -- HArray1 of 2D objects.
29
30   class HArray1OfCirc2d
31     instantiates HArray1 from PCollection (Circ2d from gp);
32   class HArray1OfDir2d
33         instantiates HArray1 from PCollection (Dir2d from gp);
34   class HArray1OfLin2d
35         instantiates HArray1 from PCollection (Lin2d from gp);
36   class HArray1OfPnt2d
37         instantiates HArray1 from PCollection (Pnt2d from gp);
38   class HArray1OfVec2d
39         instantiates HArray1 from PCollection (Vec2d from gp);
40   class HArray1OfXY
41         instantiates HArray1 from PCollection (XY from gp);
42
43
44     -- HArray1 of 3D objects.
45
46   class HArray1OfDir
47         instantiates HArray1 from PCollection (Dir from gp);
48   class HArray1OfPnt
49         instantiates HArray1 from PCollection (Pnt from gp);
50   class HArray1OfVec
51         instantiates HArray1 from PCollection (Vec from gp);
52   class HArray1OfXYZ
53         instantiates HArray1 from PCollection (XYZ from gp);
54
55
56     -- HArray2 of 2D objects.
57
58   class HArray2OfCirc2d
59         instantiates HArray2 from PCollection (Circ2d from gp);
60   class HArray2OfDir2d
61         instantiates HArray2 from PCollection (Dir2d from gp);
62   class HArray2OfLin2d
63         instantiates HArray2 from PCollection (Lin2d from gp);
64   class HArray2OfPnt2d
65         instantiates HArray2 from PCollection (Pnt2d from gp);
66   class HArray2OfVec2d
67         instantiates HArray2 from PCollection (Vec2d from gp);
68   class HArray2OfXY
69         instantiates HArray2 from PCollection (XY from gp);
70
71
72     -- HArray2 of 3D objects.
73
74   class HArray2OfDir
75         instantiates HArray2 from PCollection (Dir from gp);
76   class HArray2OfPnt
77         instantiates HArray2 from PCollection (Pnt from gp);
78   class HArray2OfVec
79         instantiates HArray2 from PCollection (Vec from gp);
80   class HArray2OfXYZ
81         instantiates HArray2 from PCollection (XYZ from gp);
82
83
84     -- HSequences of 2D objects.
85
86   class HSequenceOfDir
87         instantiates HSequence  from PCollection (Dir from gp);
88   class HSequenceOfPnt
89         instantiates HSequence  from PCollection (Pnt from gp);
90   class HSequenceOfVec
91         instantiates HSequence  from PCollection (Vec from gp);
92   class HSequenceOfXYZ
93         instantiates HSequence  from PCollection (XYZ from gp);
94
95
96     -- HSequences of 2D objects.
97
98 --  class HSequenceOfDir2d
99 --      instantiates HSequence  from PCollection (Dir2d from gp);
100 --  class HSequenceOfPnt2d
101 --      instantiates HSequence  from PCollection (Pnt2d from gp);
102 --  class HSequenceOfVec2d
103 --      instantiates HSequence  from PCollection (Vec2d from gp);
104 --  class HSequenceOfXY
105 --      instantiates HSequence  from PCollection (XY from gp);
106
107
108 end PColgp;