IInkStroke Interface
Represents a single ink stroke.
Signature
export interface IInkStroke
Properties
Property | Type | Description |
---|---|---|
id | string | Unique identifier for the ink stroke. |
pen | IPen | Description of the pen used to create the stroke. |
points | IInkPoint[] | 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[]