SDL_Finger.3type - Man Page

Data about a single finger in a multitouch event.

Header File

Defined in SDL3/SDL_touch.h

Synopsis

#include "SDL3/SDL.h"

typedef struct SDL_Finger
{
    SDL_FingerID id;  /**< the finger ID */
    float x;  /**< the x-axis location of the touch event, normalized (0...1) */
    float y;  /**< the y-axis location of the touch event, normalized (0...1) */
    float pressure; /**< the quantity of pressure applied, normalized (0...1) */
} SDL_Finger;

Description

Each touch event is a collection of fingers that are simultaneously in contact with the touch device (so a "touch" can be a "multitouch," in reality), and this struct reports details of the specific fingers.

Availability

This struct is available since SDL 3.2.0.

See Also

·(3), SDL_GetTouchFingers(3)

Info

SDL 3.2.2 Simple Directmedia Layer SDL3 DATATYPES