Bitbybit Docs
    Preparing search index...

    Type Alias Polyline2 (Inputs.Base)

    A connected chain of points in the plane, optionally closed, with an optional color.

    type Polyline2 = {
        points: Point2[];
        isClosed?: boolean;
        color?: number[];
    }
    Index

    Properties

    points: Point2[]
    isClosed?: boolean
    color?: number[]