sesaparcours
    Preparing search index...
    • Adds the curve of a function in the system of axis frame syntaxes addCurve(calc, x), addCurve(calc, x, color), addCurve(calc, x, color, lineStyle), addCurve(calc, x, color, lineStyle, thickness) and addCurve(calc, x, color, lineStyle, thickness, rep) are allowed too

      Parameters

      • options: {
            calc: CFonc;
            closed?: boolean;
            color?: string;
            hidden?: boolean;
            lineStyle?: string;
            opacity?: number;
            thickness?: number;
            x: number;
        }
        • calc: CFonc

          name of the function of function curve is to be created of

        • Optionalclosed?: boolean

          true to set the point locus closed

        • Optionalcolor?: string

          Color, black by default

        • Optionalhidden?: boolean

          true to get the point locus masked

        • OptionallineStyle?: string

          Line style (line|-|dot|.|dashdash|--|dashdotdot|-..|dashdotdotdot|-...|dashdashdash|---)

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • Optionalthickness?: number

          Thickness of the stroke

        • x: number

          number of points used to create the curve (point locus)

      Returns void