0024624: Lost word in license statement in source files
[occt.git] / src / BRepClass / BRepClass.cdl
1 -- Created on: 1992-11-18
2 -- Created by: Remi LEQUETTE
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 BRepClass 
18
19         ---Purpose: The  BRepClass packages provides    classification
20         --          algorithms for the BRep topology.  It instantiates
21         --          the algorithms from the package TopClass.
22
23 uses
24     gp,
25     TopAbs,
26     TopoDS,
27     TopExp,
28     BRepTools,
29     Geom2dInt,
30     TopClass,
31 ---    IntCurveSurface,
32     Bnd
33
34
35
36
37 is
38     class Edge;
39         ---Purpose: Stores the Edge and the Face.
40
41     class Intersector;
42         ---Purpose: Intersect an Edge  with a segment.   This class is
43         --          inherited   from   IntConicCurveOfGInter      from
44         --          Geom2dInt.
45
46     class FacePassiveClassifier instantiates Classifier2d from TopClass
47         (Edge         from BRepClass,
48          Intersector  from BRepClass);
49
50     class FaceExplorer;
51         ---Purpose: Exploration of a Face to return UV edges.
52
53     class FClassifier instantiates FaceClassifier from TopClass
54         (FaceExplorer from BRepClass,
55          Edge         from BRepClass,
56          Intersector  from BRepClass);
57          
58     class FaceClassifier;
59         ---Purpose: Inherited    from   FClassifier   to   provide   a
60         --          Constructor with a Face.
61
62        
63 end BRepClass;