Bitbybit Docs
    Preparing search index...

    Type Alias Polyline3 (Inputs.Base)

    A connected chain of points in space, optionally closed, with an optional colour. Closing it turns the chain into an outline that can become a face.

    type Polyline3 = {
        points: Point3[];
        isClosed?: boolean;
        color?: number[];
    }
    Index

    Properties

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