blob: ab40dcfea40afc611764d292029ac52d4daeb1f7 (
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
|
-- File: PDataStd_PatternStd.cdl
-- Created: Mon Feb 16 13:33:02 1998
-- Author: Jing Cheng MEI
-- <mei@pinochiox.paris1.matra-dtv.fr>
-- modified Sergey Zaritchny
---Copyright: Matra Datavision 1998
class PatternStd from PDataXtd inherits Attribute from PDF
---Purpose: to create a pattern function
uses
NamedShape from PNaming,
Integer from PDataStd,
Real from PDataStd
is
Create
returns mutable PatternStd from PDataXtd;
--- Category: Set and Get methods
Signature(me: mutable; signature: Integer from Standard);
---C++: inline
Axis1Reversed(me: mutable; Axis1Reversed: Boolean from Standard);
---C++: inline
Axis2Reversed(me: mutable; Axis2Reversed: Boolean from Standard);
---C++: inline
Axis1(me: mutable; Axis1: NamedShape from PNaming);
---C++: inline
Axis2(me: mutable; Axis2: NamedShape from PNaming);
---C++: inline
Value1(me: mutable; Value1: Real from PDataStd);
---C++: inline
Value2(me: mutable; Value2: Real from PDataStd);
---C++: inline
NbInstances1(me: mutable; NbInstances1: Integer from PDataStd);
---C++: inline
NbInstances2(me: mutable; NbInstances2: Integer from PDataStd);
---C++: inline
Mirror(me: mutable; plane: NamedShape from PNaming);
---C++: inline
Signature(me) returns Integer from Standard;
---C++: inline
Axis1Reversed(me) returns Boolean from Standard;
---C++: inline
Axis2Reversed(me) returns Boolean from Standard;
---C++: inline
Axis1(me) returns NamedShape from PNaming;
---C++: inline
Axis2(me) returns NamedShape from PNaming;
---C++: inline
Value1(me) returns Real from PDataStd;
---C++: inline
Value2(me) returns Real from PDataStd;
---C++: inline
NbInstances1(me) returns Integer from PDataStd;
---C++: inline
NbInstances2(me) returns Integer from PDataStd;
---C++: inline
Mirror(me) returns NamedShape from PNaming;
---C++: inline
fields
mySignature : Integer from Standard;
myAxis1Reversed : Boolean from Standard;
myAxis2Reversed : Boolean from Standard;
myAxis1 : NamedShape from PNaming;
myAxis2 : NamedShape from PNaming;
myValue1 : Real from PDataStd;
myValue2 : Real from PDataStd;
myNb1 : Integer from PDataStd;
myNb2 : Integer from PDataStd;
myMirror : NamedShape from PNaming;
end PatternStd;
|