blob: 5004ddd6c89a5c7e1006fa8b0467f623f5d3464a (
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
|
-- File: PGeom2d_Transformation.cdl
-- Created: Tue Apr 6 17:33:03 1993
-- Author: Philippe DAUTRY
-- <fid@mastox>
-- Copyright: Matra Datavision 1993
class Transformation from PGeom2d inherits Persistent from Standard
---Purpose : The class Transformation allows to create
-- Translation, Rotation, Symmetry, Scaling and
-- complex transformations obtained by combination of
-- the previous elementary transformations. The
-- restriction to these basic transformations allows
-- us to be sure that an object will never change
-- nature.
--
---See Also : Transformation from Geom2d.
uses Trsf2d from gp
is
Create returns mutable Transformation from PGeom2d;
---Purpose : Creates a transformation with default values.
---Level: Internal
Create (aTrsf : Trsf2d from gp) returns mutable Transformation from PGeom2d;
---Purpose : Creates a transformation with <aTrsf>.
---Level: Internal
Trsf (me : mutable; aTrsf : Trsf2d from gp);
---Purpose : Creates a Transformation with <aTrsf>.
---Level: Internal
Trsf (me) returns Trsf2d from gp;
---Purpose : Returns the value of the field trsf.
---Level: Internal
fields
trsf : Trsf2d from gp;
end;
|