gesture_tft_t

The two-finger tap gesture data type.

Synopsis:

typedef struct  {
    gesture_base_t base ;
    tft_params_t params ;
    gesture_coords_t touch_coords [2];
    gesture_coords_t release_coords [2];
    gesture_coords_t centroid ;
    unsigned down_count ;
}gesture_tft_t;

Data:

gesture_base_t base
The gesture base data structure.
tft_params_t params
The two-finger tap parameters.
gesture_coords_t touch_coords[2]
The coordinates of the first touch event.
gesture_coords_t release_coords[2]
The coordinates of the second release event.
gesture_coords_t centroid
The midpoint between the two touches.
unsigned down_count
The time in milliseconds that the fingers remained touching.

Library:

libgestures

Description:

This structure carries data about the two-finger tap gesture.