blob: 379d57a4f6b916d497541974ed3c7ce8c97a403d (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
-- File: PTopoDS_TShape1.cdl
-- -------------------
-- Author: DAUTRY Philippe
-- <fid@fox.paris1.matra-dtv.fr>
---Copyright: MATRA DATAVISION 1998
---Version: 0.0
---History: Version Date Purpose
-- 0.0 Feb 4 1998 Creation
deferred class TShape1 from PTopoDS inherits Persistent from Standard
---Purpose: A TShape1 is a topological structure describing a
-- set of points in a 2D or 3D space.
--
-- All the information stored are potentially frozen. So has
-- the "free" information no sense in the D.B. context. A
-- Shape from PTopoDS translated in a Shape from TopoDS will
-- be automatically frozen (not free).
uses
HArray1OfShape1 from PTopoDS,
Shape1 from PTopoDS,
ShapeEnum from TopAbs
is
Initialize;
---Level: Internal
ShapeType(me) returns ShapeEnum from TopAbs
---Purpose: Returns the type as a term of the ShapeEnum enum :
-- VERTEX, EDGE, WIRE, FACE, ....
---Level: Internal
is deferred;
Modified(me) returns Boolean
---Purpose: Returns the modification flag.
---Level: Internal
is static;
Modified(me : mutable; M : Boolean)
---Purpose: Sets the modification flag.
---Level: Internal
is static;
Checked(me) returns Boolean
---Purpose: Returns the checked flag.
---Level: Internal
is static;
Checked(me : mutable; C : Boolean)
---Purpose: Sets the checked flag.
---Level: Internal
is static;
Orientable(me) returns Boolean
---Purpose: Returns the orientability flag.
---Level: Internal
is static;
Orientable(me : mutable; C : Boolean)
---Purpose: Sets the orientability flag.
---Level: Internal
is static;
Closed(me) returns Boolean
---Purpose: Returns the closedness flag.
---Level: Internal
is static;
Closed(me : mutable; C : Boolean)
---Purpose: Sets the closedness flag.
---Level: Internal
is static;
Infinite(me) returns Boolean
---Purpose: Returns the infinity flag.
---Level: Internal
is static;
Infinite(me : mutable; C : Boolean)
---Purpose: Sets the infinity flag.
---Level: Internal
is static;
Convex(me) returns Boolean
---Purpose: Returns the convexness flag.
---Level: Internal
is static;
Convex(me : mutable; C : Boolean)
---Purpose: Sets the convexness flag.
---Level: Internal
is static;
Shapes(me) returns HArray1OfShape1 from PTopoDS
---Purpose: Returns the hshape list
---Level: Internal
is static;
Shapes(me; I : Integer from Standard) returns Shape1 from PTopoDS
---Purpose: Returns the i th element of the Shape1 list
---Level: Internal
is static;
Shapes(me: mutable; S : HArray1OfShape1 from PTopoDS)
---Purpose: Sets the Shape1 list
---Level: Internal
is static;
Shapes(me: mutable; I : Integer from Standard; S : Shape1 from PTopoDS)
---Purpose: Sets the i th element of the hshape list
---Level: Internal
is static;
fields
myShapes : HArray1OfShape1 from PTopoDS;
myFlags : Integer from Standard;
end TShape1;
|