blob: 41f48917da1588ea58dfd8b2c6c9f4f664a7518a (
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
61
62
63
64
65
66
|
-- File: HLRTopoBRep_FaceData.cdl
-- Created: Mon Mar 27 15:03:08 1995
-- Author: Christophe MARION
-- <cma@ecolox>
---Copyright: Matra Datavision 1995
class FaceData from HLRTopoBRep
---Purpose: Contains the 3 ListOfShape of a Face ( Internal
-- OutLines, OutLines on restriction and IsoLines ).
uses
Shape from TopoDS,
ListOfShape from TopTools
is
Create returns FaceData from HLRTopoBRep;
FaceIntL(me)
returns ListOfShape from TopTools
---C++: inline
---C++: return const &
is static;
FaceOutL(me)
returns ListOfShape from TopTools
---C++: inline
---C++: return const &
is static;
FaceIsoL(me)
returns ListOfShape from TopTools
---C++: inline
---C++: return const &
is static;
AddIntL(me : in out)
returns ListOfShape from TopTools
---C++: inline
---C++: return &
is static;
AddOutL(me : in out)
returns ListOfShape from TopTools
---C++: inline
---C++: return &
is static;
AddIsoL(me : in out)
returns ListOfShape from TopTools
---C++: inline
---C++: return &
is static;
fields
myIntL : ListOfShape from TopTools;
-- For a face the list of internal OutLines.
myOutL : ListOfShape from TopTools;
-- For a face the list of not OutLines on restriction.
myIsoL : ListOfShape from TopTools;
-- For a face the list of IsoLines.
end FaceData;
|