efl/src/lib/evas/canvas/efl_canvas_animation_rotate.eo

39 lines
1.2 KiB
Plaintext
Raw Normal View History

class @beta Efl.Canvas.Animation_Rotate extends Efl.Canvas.Animation
2017-08-24 19:10:58 -07:00
{
[[Efl rotate animation class]]
c_prefix: efl_animation_rotate;
data: Efl_Canvas_Animation_Rotate_Data;
2017-08-24 19:10:58 -07:00
methods {
@property rotate {
[[Rotate property]]
2017-08-24 19:10:58 -07:00
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.]]
center_point : Eina.Vector2; [[Relative coordinate of the center point.]]
2017-08-24 19:10:58 -07:00
}
}
@property rotate_absolute {
[[Rotate absolute property]]
2017-08-24 19:10:58 -07:00
set {
}
get {
}
values {
from_degree: double; [[Rotation degree when animation starts]]
to_degree: double; [[Rotation degree when animation ends]]
center_pointer : Eina.Position2D; [[absolute coordinate of the center point.]]
2017-08-24 19:10:58 -07:00
}
}
}
implements {
Efl.Object.constructor;
Efl.Canvas.Animation.animation_apply;
2017-08-24 19:10:58 -07:00
}
}