0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / ShapeProcess / ShapeProcess_OperLibrary.cdl
1 -- Created on: 2000-08-31
2 -- Created by: Andrey BETENEV
3 -- Copyright (c) 2000-2014 OPEN CASCADE SAS
4 --
5 -- This file is part of Open CASCADE Technology software library.
6 --
7 -- This library is free software; you can redistribute it and/or modify it under
8 -- the terms of the GNU Lesser General Public License version 2.1 as published
9 -- by the Free Software Foundation, with special exception defined in the file
10 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 -- distribution for complete text of the license and disclaimer of any warranty.
12 --
13 -- Alternatively, this file may be used under the terms of Open CASCADE
14 -- commercial license or contractual agreement.
15
16 class OperLibrary from ShapeProcess 
17
18     ---Purpose: Provides a set of following operators
19     --
20     --          DirectFaces
21     --          FixShape
22     --          SameParameter
23     --          SetTolerance
24     --          SplitAngle
25     --          BSplineRestriction
26     --          ElementaryToRevolution
27     --          SurfaceToBSpline
28     --          ToBezier
29     --          SplitContinuity
30     --          SplitClosedFaces
31     --          FixWireGaps
32     --          FixFaceSize
33     --          DropSmallEdges
34     --          FixShape
35     --          SplitClosedEdges
36
37 uses
38
39     Shape               from TopoDS,
40     UOperator           from ShapeProcess,
41     ShapeContext        from ShapeProcess,
42     Modification        from BRepTools,
43     DataMapOfShapeShape from TopTools
44
45 is
46
47     Init (myclass);
48         ---Purpose: Registers all the operators
49
50     ApplyModifier (myclass; S: Shape from TopoDS;
51                             context: ShapeContext from ShapeProcess;
52                             M: Modification from BRepTools;
53                             map: in out DataMapOfShapeShape from TopTools)
54         ---Purpose: Applies BRepTools_Modification to a shape,
55         --          taking into account sharing of components of compounds.
56     returns Shape from TopoDS;
57
58 end OperLibrary;