0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / GC / GC.cdl
1 -- Created on: 1992-03-27
2 -- Created by: Remi GILET
3 -- Copyright (c) 1992-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 GC
18
19 uses gp,
20      gce,
21      Geom,
22      StdFail
23
24
25     ---Level : Public. 
26     --  All methods of all  classes will be public.
27
28
29 is
30
31 private deferred class Root;
32
33 ---------------------------------------------------------------------------
34 --         Constructions of 3d geometrical elements from Geom.
35 ---------------------------------------------------------------------------
36
37 class MakeLine;
38
39 class MakeCircle;
40
41 class MakeHyperbola;
42
43 class MakeEllipse;
44
45 class MakeSegment;
46
47 class MakeArcOfCircle;
48
49 class MakeArcOfEllipse;
50
51 class MakeArcOfHyperbola;
52
53 class MakeArcOfParabola;
54
55 ---------------------------------------------------------------------------
56 --                   Constructions of planes from Geom.
57 ---------------------------------------------------------------------------
58
59 class MakePlane;
60
61 ---------------------------------------------------------------------------
62 --                  Construction of surfaces from Geom.
63 ---------------------------------------------------------------------------
64
65 class MakeCylindricalSurface;
66
67 class MakeConicalSurface;
68
69 class MakeTrimmedCylinder;
70
71 class MakeTrimmedCone;
72
73 ---------------------------------------------------------------------------
74 --               Constructions of Transformation from Geom.
75 ---------------------------------------------------------------------------
76
77 class MakeTranslation;
78
79 class MakeMirror;
80
81 class MakeRotation;
82
83 class MakeScale;
84
85 end GC;