Type Alias PointTrackerResults

PointTrackerResults: Readonly<{
    fromInitial: PointTrack;
    fromLast: PointTrack;
    fromMark: PointTrack | undefined;
    values: ReadonlyArray<Point>;
}>

Results of point tracking

Type declaration

  • fromInitial: PointTrack

    Relation of last point to 'initial' point. This will be the oldest point in the buffer of the tracker.

  • fromLast: PointTrack

    Relation of last point to previous point

  • fromMark: PointTrack | undefined

    Relation of last point to a 'mark' point, which is manually set.

    Will give undefined if .mark() has not been called on tracker.

  • values: ReadonlyArray<Point>