0024784: Move documentation in CDL files to proper location
[occt.git] / src / BRepSweep / BRepSweep.cdl
1 -- Created on: 1993-01-12
2 -- Created by: Philippe DAUTRY
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 BRepSweep
18
19     ---Purpose: This package implements the package Sweep for the BRep
20     --          structure.
21
22 uses
23
24     Standard,
25     Quantity,
26     TCollection, 
27     TColStd,
28     gp, 
29     Geom,
30     TopAbs, 
31     TopLoc, 
32     TopTools, 
33     TopoDS, 
34     TopExp, 
35     BRep,
36     Sweep
37
38 is
39
40     class Builder;
41
42     class Tool;
43
44     class Iterator;
45
46     deferred class NumLinearRegularSweep;
47
48     deferred class Trsf;
49     --- This class is inherited  from LinearRegularSweep to  implement
50     --  the simple swept primitives built moving a Shape with a Trsf.
51
52     class Translation;
53     --- This class is inherited from Trsf to implement the translation
54     --  sweep.
55
56     class Rotation;
57     --- This class is  inherited  from Trsf to implement  the rotation
58     --  sweep.
59
60     class Prism;
61     --- This class provides simple methods to build prism.
62
63     class Revol;
64     --- This class provides simple methods to build Revol.
65
66 end BRepSweep;