summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_canvas_animation_rotate.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/evas/canvas/efl_canvas_animation_rotate.eo')
-rw-r--r--src/lib/evas/canvas/efl_canvas_animation_rotate.eo39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/lib/evas/canvas/efl_canvas_animation_rotate.eo b/src/lib/evas/canvas/efl_canvas_animation_rotate.eo
new file mode 100644
index 0000000000..c7f9da197c
--- /dev/null
+++ b/src/lib/evas/canvas/efl_canvas_animation_rotate.eo
@@ -0,0 +1,39 @@
+class Efl.Canvas.Animation_Rotate (Efl.Canvas.Animation)
+{
+ [[Efl rotate animation class]]
+ eo_prefix: efl_animation_rotate;
+ data: Efl_Canvas_Animation_Rotate_Data;
+ methods {
+ @property rotate {
+ [[Rotate property]]
+ set {
+ }
+ get {
+ }
+ values {
+ from_degree: double; [[Rotation degree when animation starts]]
+ to_degree: double; [[Rotation degree when animation ends]]
+ pivot: Efl.Canvas.Object; [[Pivot object for the center point. If the pivot object is NULL, then the object is rotated on itself.]]
+ cx: double; [[X relative coordinate of the center point. The left end is 0.0 and the right end is 1.0 (the center is 0.5).]]
+ cy: double; [[Y relative coordinate of the center point. The top end is 0.0 and the bottom end is 1.0 (the center is 0.5).]]
+ }
+ }
+ @property rotate_absolute {
+ [[Rotate absolute property]]
+ set {
+ }
+ get {
+ }
+ values {
+ from_degree: double; [[Rotation degree when animation starts]]
+ to_degree: double; [[Rotation degree when animation ends]]
+ cx: int; [[X absolute coordinate of the center point.]]
+ cy: int; [[Y absolute coordinate of the center point.]]
+ }
+ }
+ }
+ implements {
+ Efl.Object.constructor;
+ Efl.Canvas.Animation.animation_apply;
+ }
+}