Interface LinePathOptions

interface LinePathOptions {
    interval?: number;
    intervalKind?: ArcIntervalKind;
    vecPool?: Pool<Vec2>;
}

Hierarchy (View Summary)

Properties

interval?: number

Interval between points, see intervalKind

intervalKind?: ArcIntervalKind

Unit of interval (distance = a point every interval distance, segments = arc will be split into interval segments)

vecPool?: Pool<Vec2>

Point pool to use when adding/removing points from the path