Interface IPointersItem

interface IPointersItem {
    accum: IPointersVec2;
    current: IPointersVec2;
    diff: IPointersVec2;
    id: number;
    index: number;
    prev: IPointersVec2;
    start: IPointersVec2;
    step: IPointersVec2;
}

Properties

Total accumulated movement since start.

current: IPointersVec2

Current pointer coordinates.

Movement offset from the starting position.

id: number

Unique pointer identifier.

index: number

Index assigned to the pointer.

Previous recorded coordinates.

Coordinates at the start of the interaction.

Movement offset from the previous position.