0022627: Change OCCT memory management defaults
[occt.git] / src / Select2D / Select2D.cdl
1 -- File:        Select2D.cdl
2 -- Created:     Thu Jan 26 11:43:23 1995
3 -- Author:      Mister rmi
4 --              <rmi@photon>
5 ---Copyright:    Matra Datavision 1995
6
7
8
9 package Select2D 
10
11         ---Purpose: Dynamic Selection Tools;
12         --          description of sensitive primitives for 3D Objects
13         --          
14
15
16 uses
17     gp,
18     Bnd,
19     SelectBasics, 
20     TColgp,
21     MMgt
22 is
23
24
25     enumeration TypeOfSelection is TOS_BOUNDARY,TOS_INTERIOR
26     end TypeOfSelection;
27         ---Purpose: for closed geometries  (Circle ,Ellipse)
28         --          one can use the same sensitive entity to represent
29         --          a face or a boundary ...
30     
31
32     deferred class SensitiveEntity;
33     
34
35     class SensitivePoint;
36     
37     class SensitiveSegment;
38     
39     class SensitiveCircle;
40     
41     class SensitiveArc;
42
43     class SensitiveBox;
44
45     
46         
47     deferred class Projector;
48     
49 end Select2D;
50
51
52
53
54