798b8456b6f225b8ca7adfe9c114e13389332ba0
[occt.git] / src / BOPAlgo / BOPAlgo_CheckerSI.cdl
1 -- Created by: Peter Kurnev
2 -- Copyright (c) 2010-2014 OPEN CASCADE SAS
3 -- Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
4 -- Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
5 --                         EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 --
7 -- This file is part of Open CASCADE Technology software library.
8 --
9 -- This library is free software; you can redistribute it and/or modify it under
10 -- the terms of the GNU Lesser General Public License version 2.1 as published
11 -- by the Free Software Foundation, with special exception defined in the file
12 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
13 -- distribution for complete text of the license and disclaimer of any warranty.
14 --
15 -- Alternatively, this file may be used under the terms of Open CASCADE
16 -- commercial license or contractual agreement.
17
18 --
19 class CheckerSI from BOPAlgo 
20     inherits PaveFiller from BOPAlgo  
21     
22     ---Purpose: Checks shape on self-interference.
23
24 is
25     Create 
26         returns CheckerSI from BOPAlgo;  
27     ---C++: alias "Standard_EXPORT virtual ~BOPAlgo_CheckerSI();"  
28     
29
30     Perform(me:out) 
31         is redefined;   
32   
33
34     Init  (me:out) 
35         is redefined protected;
36
37     SetLevelOfCheck(me:out; 
38       theLevel: Integer from Standard); 
39     ---Purpose:  Sets the level of checking shape on self-interference.
40     --           It defines which interferferences will be checked: 
41     --           0 - only V/V; 
42     --           1 - V/V and V/E; 
43     --           2 - V/V, V/E and E/E; 
44     --           3 - V/V, V/E, E/E and V/F;
45     --           4 - V/V, V/E, E/E, V/F and E/F; 
46     --           5 - all interferences, default value. 
47  
48
49     PostTreat  (me:out)  
50         is protected;       
51     ---Purpose: Provides post-tratment actions   
52     
53     PerformVZ(me:out) 
54       is virtual protected; 
55        --Purpose: Computes Vertex/Solid interferences 
56        
57     PerformEZ(me:out) 
58       is virtual protected;  
59       --Purpose: Computes Edge/Solid interferences 
60      
61     PerformFZ(me:out) 
62       is virtual protected;   
63       --Purpose: Computes Face/Solid interferences 
64     PerformZZ(me:out) 
65       is virtual protected;  
66       --Purpose: Computes Solid/Solid interferences 
67  
68  
69 fields
70     myLevelOfCheck: Integer from Standard is protected;
71     
72 end CheckerSI;