brepjs API Reference
    Preparing search index...

    Interface LoftAllEntry

    Configuration for a single entry in a batch loft operation.

    interface LoftAllEntry {
        endPoint?: PointInput;
        ruled?: boolean;
        startPoint?: PointInput;
        tolerance?: number;
        wires: Wire<Dimension>[];
    }
    Index

    Properties

    endPoint?: PointInput

    Optional end point after the last wire.

    ruled?: boolean

    Use ruled (straight) interpolation. Defaults to true.

    startPoint?: PointInput

    Optional start point before the first wire.

    tolerance?: number

    Sewing tolerance. Defaults to 1e-6.

    wires: Wire<Dimension>[]

    Ordered wire profiles to loft through.