Skip to main content
Version: v1

IInkPoint Interface

Data about a single point in an ink stroke

Signature

export interface IInkPoint

Properties

PropertyTypeDescription
pressurenumberThe ink pressure applied (typically from PointerEvent.pressure).
timenumberTime, in milliseconds, that the point was generated on the originating device.
xnumberX coordinate
ynumberY coordinate

Property Details

pressure

The ink pressure applied (typically from PointerEvent.pressure).

Signature

pressure: number;

Type: number

time

Time, in milliseconds, that the point was generated on the originating device.

Signature

time: number;

Type: number

x

X coordinate

Signature

x: number;

Type: number

y

Y coordinate

Signature

y: number;

Type: number