0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / BOPTools / BOPTools.cdl
1 -- Created by: Peter KURNEV
2 -- Copyright (c) 2000-2014 OPEN CASCADE SAS
3 --
4 -- This file is part of Open CASCADE Technology software library.
5 --
6 -- This library is free software; you can redistribute it and/or modify it under
7 -- the terms of the GNU Lesser General Public License version 2.1 as published
8 -- by the Free Software Foundation, with special exception defined in the file
9 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 -- distribution for complete text of the license and disclaimer of any warranty.
11 --
12 -- Alternatively, this file may be used under the terms of Open CASCADE
13 -- commercial license or contractual agreement.
14
15 package BOPTools 
16
17         ---Purpose: 
18
19 uses
20     gp,  
21     Bnd,
22     TopAbs, 
23     Geom,   
24     Geom2d,
25     GeomAPI, 
26     BRepClass3d,
27     TopoDS, 
28     TopTools, 
29     IntTools,   
30     ProjLib,
31     --                 
32     BOPCol 
33 is 
34
35     -- 
36     -- classes
37     -- 
38     class ShapeSet; 
39     class EdgeSet; 
40     class AlgoTools; 
41     class Set; 
42     class SetMapHasher;  
43     class AlgoTools2D; 
44     class AlgoTools3D;
45     -- 
46     imported MapOfSet;
47     imported DataMapOfShapeSet;
48     --
49     -- primitives
50     --
51     imported ListOfShapeSet from BOPTools;
52     imported ListOfEdgeSet from BOPTools;
53     imported ConnexityBlock from BOPTools;
54     imported ListOfConnexityBlock from BOPTools;
55     imported CoupleOfShape from BOPTools;
56     imported ListOfCoupleOfShape from BOPTools;
57     --
58     --  static methods 
59     -- 
60     MapShapes(S : Shape from TopoDS;
61                   M : in out MapOfShape from BOPCol); 
62                
63     MapShapes(S : Shape from TopoDS;
64                   M : in out IndexedMapOfShape from BOPCol); 
65               
66     MapShapes(S : Shape from TopoDS;
67                   T : ShapeEnum from TopAbs;
68                   M : in out IndexedMapOfShape from BOPCol);
69           
70
71     MapShapesAndAncestors
72             (S  : Shape from TopoDS;
73              TS : ShapeEnum from TopAbs;
74          TA : ShapeEnum from TopAbs;
75          M  : in out IndexedDataMapOfShapeListOfShape from BOPCol);
76     
77 end BOPTools;