FreakingGenius - v0.1.0
    Preparing search index...

    Interface StrokeGroup

    A semantically related cluster of strokes — typically one mathematical symbol, digit, or operator as grouped by StrokeGrouping.

    interface StrokeGroup {
        bounds: BoundingBox;
        endedAt: number | null;
        id: string;
        startedAt: number;
        strokeIds: string[];
    }
    Index

    Properties

    bounds: BoundingBox

    Smallest bounding box that encloses all strokes in the group.

    endedAt: number | null

    Unix timestamp (ms) when the last stroke ended. null if the group is still accumulating strokes.

    id: string

    Unique group identifier (UUID v4).

    startedAt: number

    Unix timestamp (ms) when the first stroke in the group began.

    strokeIds: string[]

    IDs of every Stroke that belongs to this group, in temporal order.