0024784: Move documentation in CDL files to proper location
[occt.git] / src / BiTgte / BiTgte.cdl
1 -- Created on: 1996-12-16
2 -- Created by: Bruno DUMORTIER
3 -- Copyright (c) 1996-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 BiTgte 
18
19         ---Purpose: 
20
21 uses
22     Adaptor3d,
23     Bnd,
24     GeomAbs,
25     Geom2d,
26     Geom,
27     TopoDS,
28     TopTools,
29     BRepAlgo,
30     BRepFill,
31     BRepOffset,
32     TCollection,
33     TColStd,
34     TColgp,
35     gp
36
37 is
38     enumeration ContactType is
39         FaceFace,
40         FaceEdge,
41         FaceVertex,
42         EdgeEdge,
43         EdgeVertex,
44         VertexVertex
45     end ContactType;
46
47     class Blend;
48
49     private class CurveOnEdge;
50
51     private class HCurveOnEdge instantiates 
52         GenHCurve from Adaptor3d(CurveOnEdge from BiTgte);
53
54     private class CurveOnVertex;
55
56     private class HCurveOnVertex instantiates 
57         GenHCurve from Adaptor3d(CurveOnVertex from BiTgte);
58
59     private class DataMapOfShapeBox instantiates 
60         DataMap from TCollection(Shape          from TopoDS,
61                                  Box            from Bnd,
62                                  ShapeMapHasher from TopTools);
63
64 end BiTgte;