Method
ClutterGestureActionget_motion_coords
Declaration [src]
void
clutter_gesture_action_get_motion_coords (
ClutterGestureAction* action,
guint point,
gfloat* motion_x,
gfloat* motion_y
)
Description [src]
Retrieves the coordinates, in stage space, of the latest motion event during the dragging.
Parameters
point
-
Type:
guint
The touch point index, with 0 being the first touch point received by the action.
motion_x
-
Type:
gfloat*
Return location for the latest motion event’s X coordinate.
The argument will be set by the function. The argument can be NULL
. motion_y
-
Type:
gfloat*
Return location for the latest motion event’s Y coordinate.
The argument will be set by the function. The argument can be NULL
.