blob: 48d37af7b58ba854cddaadcd51c884d0f3d7478e (
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
|
-- File: Plate_PinpointConstraint.cdl
-- Created: Thu Oct 19 17:24:04 1995
-- Author: Andre LIEUTIER
-- <ds@sgi63>
---Copyright: Matra Datavision 1995
class PinpointConstraint from Plate
---Purpose : define a constraint on the Plate
--
uses
XY from gp,
XYZ from gp
is
Create returns PinpointConstraint;
Create(point2d : XY ; ImposedValue : XYZ ;
iu : Integer = 0; iv : Integer = 0) returns PinpointConstraint;
-- Accessors :
Pnt2d(me) returns XY from gp;
---C++: inline
---C++: return const &
Idu(me) returns Integer;
---C++: inline
---C++: return const &
Idv(me) returns Integer;
---C++: inline
---C++: return const &
Value(me) returns XYZ from gp;
---C++: inline
---C++: return const &
fields
value : XYZ ;
pnt2d : XY ;
idu,idv : Integer;
end;
|