lace_collada_0.1.0_99d5bbb7/source/collada-asset.ads

 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
with
     ada.Calendar;

package collada.Asset
--
-- Models a collada asset.
--
is

   type Contributor is
      record
         Author         : Text;
         authoring_Tool : Text;
      end record;


   type Unit is
      record
         Name  : Text;
         Meter : Float;
      end record;


   type up_Direction is (X_up, Y_up, Z_up);



   type Item is
      record
         Contributor : asset.Contributor;
         Created     : ada.Calendar.Time;
         Modified    : ada.Calendar.Time;
         Unit        : asset.Unit;
         up_Axis     : up_Direction;
      end record;

end collada.Asset;