summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_canvas_animation_rotate_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/evas/canvas/efl_canvas_animation_rotate_private.h')
-rw-r--r--src/lib/evas/canvas/efl_canvas_animation_rotate_private.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/lib/evas/canvas/efl_canvas_animation_rotate_private.h b/src/lib/evas/canvas/efl_canvas_animation_rotate_private.h
deleted file mode 100644
index 64c5887959..0000000000
--- a/src/lib/evas/canvas/efl_canvas_animation_rotate_private.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#define EFL_ANIMATION_PROTECTED
-
-#include "evas_common_private.h"
-#include <Ecore.h>
-#include "efl_canvas_animation_private.h"
-
-#define EFL_ANIMATION_ROTATE_DATA_GET(o, pd) \
- Efl_Canvas_Animation_Rotate_Data *pd = efl_data_scope_get(o, EFL_CANVAS_ANIMATION_ROTATE_CLASS)
-
-typedef struct _Efl_Canvas_Animation_Rotate_Property
-{
- double degree;
-} Efl_Canvas_Animation_Rotate_Property;
-
-typedef struct _Efl_Canvas_Animation_Rotate_Relative_Pivot
-{
- Efl_Canvas_Object *obj;
- Eina_Vector2 pos;
-} Efl_Canvas_Animation_Rotate_Relative_Pivot;
-
-typedef struct _Efl_Canvas_Animation_Rotate_Data
-{
- Efl_Canvas_Animation_Rotate_Property from;
- Efl_Canvas_Animation_Rotate_Property to;
-
- Eina_Position2D abs_pivot;
- Efl_Canvas_Animation_Rotate_Relative_Pivot rel_pivot;
-
- Eina_Bool use_rel_pivot;
-} Efl_Canvas_Animation_Rotate_Data;