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

    Interface OpInput

    this is a type that contains and contextualizes a series of inputs to an operation, each inlet on an operation corresponds to one op input

    the drafts (from zero to multiple) associated with this input

    the parameters associated with this input

    the index of the inlet for which the draft is entering upon

    interface OpInput {
        drafts: Draft[];
        inlet_id: number;
        inlet_params: OpInletValType[];
    }
    Index

    Properties

    drafts: Draft[]
    inlet_id: number
    inlet_params: OpInletValType[]