Skip to main content
Version: v1

IInkStroke Interface

Represents a single ink stroke.

Signature

export interface IInkStroke

Properties

PropertyTypeDescription
idstringUnique identifier for the ink stroke.
penIPenDescription of the pen used to create the stroke.
pointsIInkPoint[]The points contained within the stroke.

Property Details

id

Unique identifier for the ink stroke.

Signature

id: string;

Type: string

pen

Description of the pen used to create the stroke.

Signature

pen: IPen;

Type: IPen

points

The points contained within the stroke.

Signature

points: IInkPoint[];

Type: IInkPoint[]