Interface PointerState

Represents a pointer state.

This is an immutable object.

interface PointerState {
    buttons: string[];
    pressure: number;
    radiusX: number;
    radiusY: number;
    tangentialPressure: number;
    tiltX: number;
    tiltY: number;
    twist: number;
}

Properties

buttons: string[]
pressure: number

Indicates the pressure property of the PointerEvent.

radiusX: number

Indicates 12 of the width property of the PointerEvent.

radiusY: number

Indicates 12 of the height property of the PointerEvent.

tangentialPressure: number

Indicates the tangentialPressure property of the PointerEvent.

tiltX: number

Indicates the tiltX property of the PointerEvent.

tiltY: number

Indicates the tiltY property of the PointerEvent.

twist: number

Indicates the twist property of the PointerEvent.