blob: 52b014115c21f835945433900d3822d2c66fd91c (
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
|
-- File: Vrml_Translation.cdl
-- Created: Wed Feb 12 10:33:34 1997
-- Author: Alexander BRIVIN
-- <brivin@meteox.nizhny.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class Translation from Vrml
---Purpose: defines a Translation of VRML specifying transform
--- properties.
-- This node defines a translation by 3D vector.
-- By default :
-- myTranslation (0,0,0)
uses
Vec from gp
is
Create returns Translation from Vrml;
Create ( aTranslation : Vec from gp )
returns Translation from Vrml;
SetTranslation ( me : in out; aTranslation : Vec from gp );
Translation ( me ) returns Vec from gp;
Print ( me; anOStream: in out OStream from Standard) returns OStream from Standard;
---C++: return &
fields
myTranslation : Vec from gp; -- Translation vector
end Translation;
|