struct Core::GestureEventArgs

Gesture Event Arguments.

#include <coregesturerecognition.h>

struct GestureEventArgs
{
    // fields

    PointF where;
    float amountX;
    float amountY;

    // construction

    GestureEventArgs(
        PointFRef where = PointF(),
        float amountX = 1.,
        float amountY = 1.
    );
};