blob: e4484f7ce4d94539b103f8c7c6b46ec4d96b1a47 (
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
|
-- File: TopOpeBRepBuild_ShapeListOfShape.cdl
-- Created: Mon Jun 12 10:23:56 1995
-- Author: Jean Yves LEBEY
-- <jyl@zerox>
---Copyright: Matra Datavision 1995
class ShapeListOfShape from TopOpeBRepBuild
---Purpose: represent shape + a list of shape
uses
ListOfShape from TopTools,
Shape from TopoDS
is
Create returns ShapeListOfShape from TopOpeBRepBuild;
Create(S : Shape from TopoDS)
returns ShapeListOfShape from TopOpeBRepBuild;
Create(S : Shape from TopoDS;
L : ListOfShape from TopTools)
returns ShapeListOfShape from TopOpeBRepBuild;
List(me)
returns ListOfShape from TopTools is static;
---C++: return const &
ChangeList(me : in out)
returns ListOfShape from TopTools is static;
---C++: return &
Shape(me)
returns Shape from TopoDS is static;
---C++: return const &
ChangeShape(me : in out)
returns Shape from TopoDS is static;
---C++: return &
fields
myList : ListOfShape from TopTools;
myShape : Shape from TopoDS;
end ShapeListOfShape from TopOpeBRepBuild;
|