2008-02-07 Neil J. Patel <njp@o-hand.com>
authorNeil J. Patel <njp@openedhand.com>
Thu, 7 Feb 2008 15:01:03 +0000 (15:01 +0000)
committerNeil J. Patel <njp@openedhand.com>
Thu, 7 Feb 2008 15:01:03 +0000 (15:01 +0000)
* tests/test-actors.c: (frame_cb), (main):
Changed set_anchor to move_anchor.
Changed clutter_actor_rotate x & y values to 0,0.
Switched on scaling because it seems to work without drifting.

ChangeLog
tests/test-actors.c

index b0b9525..28296e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-02-07  Neil J. Patel  <njp@o-hand.com>
+
+       * tests/test-actors.c: (frame_cb), (main):
+       Changed set_anchor to move_anchor.
+       Changed clutter_actor_rotate x & y values to 0,0.
+       Switched on scaling because it seems to work without drifting.
+
 2008-02-07  Emmanuele Bassi  <ebassi@openedhand.com>
 
        * clutter/clutter-script-parser.c:
index b4c36a3..dce7075 100644 (file)
@@ -113,15 +113,7 @@ frame_cb (ClutterTimeline *timeline,
        * unit based functions to fix.
       */
       clutter_actor_set_rotation (oh->hand[i], CLUTTER_Z_AXIS,
-                                  - 6.0 * frame_num,
-#if 0
-              (clutter_actor_get_width (oh->hand[i]) / 2) * scale_x,
-              (clutter_actor_get_height (oh->hand[i]) / 2) * scale_y,
-#else
-              (clutter_actor_get_width (oh->hand[i]) / 2),
-              (clutter_actor_get_height (oh->hand[i]) / 2),
-#endif
-               0);
+                                 - 6.0 * frame_num, 0, 0, 0);
     }
 }
 
@@ -216,14 +208,14 @@ main (int argc, char *argv[])
 
       clutter_actor_set_position (oh->hand[i], x, y);
 
-      clutter_actor_set_anchor_point_from_gravity (oh->hand[i],
+      clutter_actor_move_anchor_point_from_gravity (oh->hand[i],
                                                   CLUTTER_GRAVITY_CENTER);
 
 
       /* Add to our group group */
       clutter_container_add_actor (CLUTTER_CONTAINER (oh->group), oh->hand[i]);
 
-#if 0 /* FIXME: disabled as causes drift - see comment above */
+#if 1 /* FIXME: disabled as causes drift? - see comment above */
       if (i % 2)
        clutter_behaviour_apply (scaler_1, oh->hand[i]);
       else