Bitbybit Docs
    Preparing search index...

    Type Alias JSCADPath2 (Inputs.JSCAD)

    A 2D path: an open or closed sequence of points, with no enclosed area.

    type JSCADPath2 = {
        points: JSCADVec2[];
        isClosed: boolean;
        transforms: JSCADMat4;
        color?: JSCADColor;
    }
    Index

    Properties

    points: JSCADVec2[]
    isClosed: boolean
    transforms: JSCADMat4
    color?: JSCADColor