From 384c7048e3ac547e6632ee73680b4804a0fb188f Mon Sep 17 00:00:00 2001 From: "Neil J. Patel" Date: Thu, 7 Feb 2008 15:01:03 +0000 Subject: [PATCH] 2008-02-07 Neil J. Patel * 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 | 7 +++++++ tests/test-actors.c | 14 +++----------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index b0b9525..28296e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-02-07 Neil J. Patel + + * 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 * clutter/clutter-script-parser.c: diff --git a/tests/test-actors.c b/tests/test-actors.c index b4c36a3..dce7075 100644 --- a/tests/test-actors.c +++ b/tests/test-actors.c @@ -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 -- 2.7.4