0024748: Remove unused instantiations of collection classes
[occt.git] / src / Geom / Geom.cdl
1 -- Created on: 1993-03-09
2 -- Created by: JCV
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 Geom 
18
19         --- Purpose :
20         --  This package contains the definition of the geometric objects 
21         --  such as point, vector, axis placement, curves, surfaces and the
22         --  description of the geometric transformations available for these
23         --  objects.
24         --  All these entities are defined in 3D space.
25         --  This package gives the possibility :
26         --     . to create geometric objects,
27         --     . to have information about them,
28         --     . to modify these objects.
29         --  This package uses the services of the package gp (Geometric
30         --  processor) which describes non-persistent objects for algebraic
31         --  calculus and basic analytic geometry. The purpose of this package
32         --  is to create persistent geometric objects and to read geometric
33         --  information about these objects. Complexes geometric algorithmes
34         --  are not described in this package.     At construction time,
35         --  elementary verifications are done to verify that the objects
36         --  are coherents, but some verifications which require complex
37         --  algorithmes (for example to check that a curve has not null
38         --  length or does not self-intersect) must be done before the 
39         --  construction of the geometric objects. 
40
41 uses  
42     MMgt,  
43     Standard,
44     GeomAbs, 
45     TCollection,
46     TColStd, 
47     gp, 
48     TColgp 
49
50 --, Plate
51
52 is 
53
54
55
56         ---Group:  Exceptions 
57
58 exception UndefinedDerivative inherits DomainError  from  Standard;
59 exception UndefinedValue inherits DomainError from  Standard;
60
61     class SequenceOfBSplineSurface 
62         instantiates Sequence from TCollection (BSplineSurface from Geom);
63     class HSequenceOfBSplineSurface 
64         instantiates HSequence from TCollection (BSplineSurface from Geom,
65                                 SequenceOfBSplineSurface from Geom);
66
67         ---Group: Geometric entities 
68
69   class Transformation;
70
71
72   deferred class Geometry;
73
74
75      deferred class Point;
76               class  CartesianPoint;
77
78
79      deferred class Vector;
80               class Direction;
81               class VectorWithMagnitude;
82      
83
84      deferred class AxisPlacement;
85               class Axis1Placement;
86               class Axis2Placement;
87
88
89      deferred class Curve;
90
91               class Line;
92
93               deferred class Conic;
94                        class Circle;
95                        class Ellipse;
96                        class Hyperbola;
97                        class Parabola;
98
99               deferred class BoundedCurve;
100                        class BezierCurve;
101                        class BSplineCurve;
102                        class TrimmedCurve;
103
104               class  OffsetCurve;
105
106
107      deferred class Surface;
108
109               deferred class ElementarySurface;
110                        class Plane;
111                        class ConicalSurface;
112                        class CylindricalSurface;
113                        class SphericalSurface;
114                        class ToroidalSurface;
115
116               deferred class SweptSurface;
117                        class SurfaceOfLinearExtrusion;
118                        class SurfaceOfRevolution;
119
120               deferred class BoundedSurface;
121                        class BezierSurface;
122                        class BSplineSurface;
123                        class RectangularTrimmedSurface;
124                
125               
126               class OffsetSurface;
127               
128 private       class OsculatingSurface;
129
130 --            class PlateSurface ;
131 end Geom;
132
133
134
135