mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 03:22:04 +00:00
2008-04-23 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.c (clutter_actor_set_property): Use the internal setter for the rotation center.
This commit is contained in:
parent
b450363370
commit
7d103daed4
@ -1,3 +1,8 @@
|
||||
2008-04-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.c (clutter_actor_set_property): Use the
|
||||
internal setter for the rotation center.
|
||||
|
||||
2008-04-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.[ch]: Add units based variant of the
|
||||
|
@ -1548,7 +1548,7 @@ clutter_actor_set_property (GObject *object,
|
||||
ClutterVertex *center;
|
||||
|
||||
center = g_value_get_boxed (value);
|
||||
clutter_actor_set_rotationx (actor,
|
||||
clutter_actor_set_rotation_internal (actor,
|
||||
CLUTTER_X_AXIS,
|
||||
priv->rxang,
|
||||
0,
|
||||
@ -1561,7 +1561,7 @@ clutter_actor_set_property (GObject *object,
|
||||
ClutterVertex *center;
|
||||
|
||||
center = g_value_get_boxed (value);
|
||||
clutter_actor_set_rotationx (actor,
|
||||
clutter_actor_set_rotation_internal (actor,
|
||||
CLUTTER_Y_AXIS,
|
||||
priv->ryang,
|
||||
center->x,
|
||||
@ -1574,7 +1574,7 @@ clutter_actor_set_property (GObject *object,
|
||||
ClutterVertex *center;
|
||||
|
||||
center = g_value_get_boxed (value);
|
||||
clutter_actor_set_rotationx (actor,
|
||||
clutter_actor_set_rotation_internal (actor,
|
||||
CLUTTER_Z_AXIS,
|
||||
priv->rzang,
|
||||
center->x,
|
||||
|
Loading…
Reference in New Issue
Block a user