0023548: Boolean operation between two faces fails
[occt.git] / src / IntPolyh / IntPolyh_ArrayOfSectionLines.cdl
1 -- Created on: 1999-04-06
2 -- Created by: Fabrice SERVANT
3 -- Copyright (c) 1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 class ArrayOfSectionLines from IntPolyh
24
25 uses
26     
27     SectionLine from IntPolyh
28
29 is
30
31
32     Create;
33     
34     Create(nn : Integer from Standard) ; 
35     
36     Init(me: in out; nn: Integer from Standard) 
37     is static;
38
39     Value(me; nn: Integer from Standard)
40         ---C++: alias operator [] 
41         ---C++: return const &
42     returns SectionLine from IntPolyh    
43     is static;
44     
45     ChangeValue(me: in out;  nn: Integer from Standard)
46         ---C++: alias operator [] 
47         ---C++: return &
48     returns SectionLine from IntPolyh    
49     is static;
50     
51     Copy(me: in out; Other : ArrayOfSectionLines from IntPolyh)
52         ---C++: alias operator =
53         ---C++: return &
54     returns ArrayOfSectionLines from IntPolyh
55     is static;
56     
57     GetN(me)
58     returns Integer from Standard
59     is static;
60     
61     NbSectionLines(me)
62     returns Integer from Standard
63     is static;
64     
65     IncrementNbSectionLines(me: in out)
66     is static;
67     
68     Destroy(me: in out)
69         ---C++: alias ~
70     is static;
71     
72     Dump(me) 
73     is static;
74         
75 fields
76
77     n,nbsectionlines : Integer from Standard;
78     ptr : Address from Standard;
79     
80 end ArrayOfSectionLines from IntPolyh;