Interface MousePointsData

Mouse interaction data that contains a set of points and the current position of the mouse.

interface MousePointsData {
    currentPosition: undefined | PointData;
    points: readonly PointData[];
}

Hierarchy

Properties

currentPosition: undefined | PointData

Returns

The current position of the pointing device.

points: readonly PointData[]

Returns

The series of points.

Generated using TypeDoc