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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
-- File: AIS_IdenticRelation.cdl
-- Created: Mon Mar 3 15:51:18 1997
-- Author: Jean-Pierre COMBE
-- <jpr@chariox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class IdenticRelation from AIS inherits Relation from AIS
---Purpose: Constructs a constraint by a relation of identity
-- between two or more datums figuring in shape
-- Interactive Objects.
uses
Shape from TopoDS,
Vertex from TopoDS,
Wire from TopoDS,
Presentation from Prs3d,
PresentationManager3d from PrsMgr,
Selection from SelectMgr,
Projector from Prs3d,
Transformation from Geom,
PresentationManager2d from PrsMgr,
GraphicObject from Graphic2d,
Plane from Geom,
Curve from Geom,
Line from Geom,
Circle from Geom,
Ellipse from Geom,
Pnt from gp,
Dir from gp
is
Create(FirstShape : Shape from TopoDS;
SecondShape : Shape from TopoDS;
aPlane : Plane from Geom)
returns mutable IdenticRelation from AIS;
---Purpose:
-- Initializes the relation of identity between the two
-- entities, FirstShape and SecondShape. The plane
-- aPlane is initialized in case a visual reference is
-- needed to show identity.
IsMovable(me) returns Boolean from Standard
---C++: inline
---Purpose:
-- Returns true if the interactive object is movable.
is redefined;
-- Methods from PresentableObject
Compute(me : mutable;
aPresentationManager: PresentationManager3d from PrsMgr;
aPresentation : mutable Presentation from Prs3d;
aMode : Integer from Standard= 0)
is redefined private;
Compute(me:mutable;
aProjector: Projector from Prs3d;
aPresentation: mutable Presentation from Prs3d)
is redefined static private;
Compute(me:mutable;
aPresentationManager: PresentationManager2d from PrsMgr;
aPresentation: mutable GraphicObject from Graphic2d;
aMode: Integer from Standard = 0)
is redefined static private;
Compute(me : mutable;
aProjector : Projector from Prs3d;
aTrsf : Transformation from Geom;
aPresentation : mutable Presentation from Prs3d)
is redefined;
---Purpose: computes the presentation according to a point of view
-- given by <aProjector>.
-- To be Used when the associated degenerated Presentations
-- have been transformed by <aTrsf> which is not a Pure
-- Translation. The HLR Prs can't be deducted automatically
-- WARNING :<aTrsf> must be applied
-- to the object to display before computation !!!
-- Methods from SelectableObject
ComputeSelection(me : mutable;
aSelection : mutable Selection from SelectMgr;
aMode : Integer from Standard)
is redefined private;
--
-- Computation private methods
--
ComputeOneEdgeOVertexPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d)
is private;
ComputeTwoEdgesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d)
is private;
ComputeTwoLinesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d;
aLin : Line from Geom;
Pnt1On1 : in out Pnt from gp;
Pnt2On1 : in out Pnt from gp;
Pnt1On2 : in out Pnt from gp;
Pnt2On2 : in out Pnt from gp;
isInf1 : Boolean from Standard;
isInf2 : Boolean from Standard)
is private;
ComputeTwoCirclesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d;
aCircle : Circle from Geom;
Pnt1On1 : Pnt from gp;
Pnt2On1 : Pnt from gp;
Pnt1On2 : Pnt from gp;
Pnt2On2 : Pnt from gp)
is private;
-- jfa 17/10/2000
ComputeAutoArcPresentation(me: mutable;
aCircle : Circle from Geom;
firstp : Pnt from gp;
lastp : Pnt from gp;
isstatic: Boolean from Standard = Standard_False)
---Purpose: Computes the presentation of the identic constraint
-- between 2 arcs in the case of automatic presentation
is private;
ComputeNotAutoCircPresentation(me: mutable;
aCircle : Circle from Geom)
---Purpose: Computes the presentation of the identic constraint
-- between 2 circles in the case of non automatic presentation
is private;
ComputeNotAutoArcPresentation(me: mutable;
aCircle : Circle from Geom;
pntfirst: Pnt from gp;
pntlast : Pnt from gp)
---Purpose: Computes the presentation of the identic constraint
-- between 2 arcs in the case of non automatic presentation
is private;
-- jfa 17/10/2000 end
-- jfa 10/10/2000
ComputeTwoEllipsesPresentation(me: mutable;
aPrs : mutable Presentation from Prs3d;
anEll : Ellipse from Geom;
Pnt1On1 : Pnt from gp;
Pnt2On1 : Pnt from gp;
Pnt1On2 : Pnt from gp;
Pnt2On2 : Pnt from gp)
is private;
-- jfa 10/10/2000 end
-- jfa 18/10/2000
ComputeAutoArcPresentation(me: mutable;
theEll : Ellipse from Geom;
firstp : Pnt from gp;
lastp : Pnt from gp;
isstatic: Boolean from Standard = Standard_False)
---Purpose: Computes the presentation of the identic constraint
-- between 2 arcs in the case of automatic presentation
is private;
ComputeNotAutoElipsPresentation(me: mutable;
theEll : Ellipse from Geom)
---Purpose: Computes the presentation of the identic constraint
-- between 2 ellipses in the case of non automatic presentation
is private;
ComputeNotAutoArcPresentation(me: mutable;
theEll : Ellipse from Geom;
pntfirst: Pnt from gp;
pntlast : Pnt from gp)
---Purpose: Computes the presentation of the identic constraint
-- between 2 arcs in the case of non automatic presentation
is private;
-- jfa 18/10/2000 end
ComputeTwoVerticesPresentation(me: mutable;
aPresentation : mutable Presentation from Prs3d)
is private;
ComputeSegSize(me)
returns Real from Standard
is private;
ComputeDirection(me; aWire : Wire from TopoDS;
aVertex : Vertex from TopoDS;
aDir : out Dir from gp)
returns Boolean from Standard
is private;
ComputeLineDirection(me; aLin : Line from Geom;
anExtremity : Pnt from gp)
returns Dir from gp
is private;
ComputeCircleDirection(me; aCirc : Circle from Geom;
ConnectedVertex : Vertex from TopoDS)
returns Dir from gp
is private;
fields
isCircle : Boolean from Standard;
myFAttach : Pnt from gp;
mySAttach : Pnt from gp;
myCenter : Pnt from gp;
end IdenticRelation;
|