gesture_pt_t

The press and tap gesture data type

Synopsis:

#include <gestures/>
typedef struct gesture_pt_t {
    gesture_base_t base;
    pt_params_t params;
    gesture_coords_t initial_coords[2];
    gesture_coords_t coords[2];
} gesture_pt_t;

Data:

gesture_base_t base
The gesture base data structure.
pt_params_t params
The swipe parameters.
gesture_coords_t initial_coords[2]
Index of the two sets of coordinates; 0 = press; 1 = tap.
gesture_coords_t coords[2]
The coordinates of the press and the tap.

Library:

libgestures

Description:

This structure carries data about the press and tap gesture.