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

    Type Alias OperationInlet

    each operation has 0 or more inlets. These are areas where drafts can be entered as inputs to the operation this datatype is intended only to support static inlets that are defined in operations.

    the display name to show with this inlet

    the type of parameter that becomes mapped to inputs at this inlet, static means that the user cannot change this value

    the description of this inlet

    this is used to alert the user the inforamation from the input this inlet will use, draft or materials.

    the assigned value of the parameter.

    the total number of drafts accepted into this inlet (or -1 if unlimited)

    type OperationInlet = {
        dx: string;
        name: string;
        num_drafts: number;
        type:
            | "number"
            | "notation"
            | "system"
            | "color"
            | "static"
            | "draft"
            | "profile"
            | "null";
        uses: "draft"
        | "weft-data"
        | "warp-data"
        | "warp-and-weft-data";
        value: OpInletValType;
    }
    Index

    Properties

    dx: string
    name: string
    num_drafts: number
    type:
        | "number"
        | "notation"
        | "system"
        | "color"
        | "static"
        | "draft"
        | "profile"
        | "null"
    uses: "draft" | "weft-data" | "warp-data" | "warp-and-weft-data"