AdaCAD Library Documentation - v1.1.4
    Preparing search index...

    Type Alias LoomSettings

    this keeps any user defined preferences associated with a given loom

    the type of loom to use for computations (currently only supporting jacquard, direct tieup/dobby looms, floor looms with shafts and treadles)

    the ends for unit length to use for calcuations

    the units to use for length, currently supports inches (1 inch), or centimeters (10cm)

    the number of frames the user has specified as the max for their loom

    the number of treadles the user has specified as the max for their loom or -1, if they have no limit

    type LoomSettings = {
        epi: number;
        frames: number;
        treadles: number;
        type: string;
        units: "cm" | "in";
    }
    Index

    Properties

    epi: number
    frames: number
    treadles: number
    type: string
    units: "cm" | "in"