sesaparcours
    Preparing search index...
    • adds a variable of name nameCalc syntaxes addVariable(nameCalc, val, min, max, step) and `addVariable(nameCalc, val, min, max, step, dialog) are allowed too

      Parameters

      • options: {
            dialog?: boolean;
            max: number;
            min: number;
            nameCalc: string;
            step: number;
            val: number;
        }
        • Optionaldialog?: boolean

          true to associate to the variable a pane with buttons +, - and =

        • max: number

          maxi value of the variable

        • min: number

          mini value of the variable

        • nameCalc: string

          Name of the variable to be created

        • step: number

          step value of the variable

        • val: number

          current value of the variable

      Returns CVariableBornee