summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_animation_rotate.eo
blob: 05408e5059f65bcd4688ebdefce2c5c882188b48 (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
import efl_animation_types;

class Efl.Animation.Rotate (Efl.Animation)
{
   [[Efl rotate animation class]]
   legacy_prefix: evas_object_animation;
   data: Evas_Object_Animation_Rotate_Data;
   methods {
      @property angle {
         set {
         }
         get {
         }
         values {
            from_angle: double; [[Rotation angle when animation starts]]
            to_angle: double; [[Rotation angle when animation ends]]
         }
      }
      @property relative_pivot {
         set {
         }
         get {
         }
         values {
            x: double; [[Relative pivot value along x axis. The left is 0.0 and the right is 1.0.]]
            y: double; [[Relative pivot value along x axis. The top is 0.0 and the bottom is 1.0.]]
            z: double; [[Relative pivot value along x axis. The front is 0.0 and the rear is 1.0.]]
         }
      }
      @property absolute_pivot {
         set {
         }
         get {
         }
         values {
            x: int; [[Absolute pivot value along x axis]]
            y: int; [[Absolute pivot value along x axis]]
            z: int; [[Absolute pivot value along x axis]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
      Efl.Animation.dup;
   }
}