summaryrefslogtreecommitdiff
path: root/src/BOPTools/BOPTools_DEInfo.cdl
blob: 735de8abc3b628867abb2484e340c6eb910d68a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
-- File:	BOPTools_DEInfo.cdl
-- Created:	Wed Sep 12 12:57:03 2001
-- Author:	Peter KURNEV
--		<pkv@irinox>
---Copyright:	 Matra Datavision 2001


class DEInfo from BOPTools 

	---Purpose:  
    	--  Auxiliary class for storing  information about  
    	--- a degenerated edge 
      	---  

uses 
    ListOfInteger from TColStd

is 
    Create 
    	returns DEInfo from BOPTools;
    	---Purpose:  
    	--- Empty constructor 
    	---
    SetVertex   (me:out; 
    	    nV:Integer from Standard); 
    	---Purpose: 
    	--- Modifier
    	--- Sets  DS-index for the vertex to which 
    	--- degenerated edge belongs to 	      
    	---
    SetFaces  	(me:out; 
    	    aLF: ListOfInteger from TColStd); 
    	---Purpose:  
    	--- Modifier
    	--- Sets  DS-indices for the faces to which 
    	--- degenerated edge belongs to    
    	---
    Faces(me) 
    	returns ListOfInteger from TColStd; 
    	---C++:  return const & 
    	---Purpose:  
    	--- Selector
    	---
    ChangeFaces(me:out) 
    	returns ListOfInteger from TColStd; 
    	---C++:  return & 
    	---Purpose:  
    	--- Selector/Modifier
    	---
    Vertex(me) 
    	returns Integer from Standard; 
    	---Purpose:  
    	--- Selector
    	---

fields 
    myFaces  :  ListOfInteger from TColStd; 
    myVertex :  Integer from Standard; 
     
end DEInfo;