sesaparcours
    Preparing search index...
    • Adds the circle of center o and radius r The figure must have a unity length syntaxes addCircleOr(o, r), addCircleOr(o, r, color), addCircleOr(o, r, color, lineStyle) and addCircleOr(o, r, color, lineStyle, thickness) are allowed too

      Parameters

      • options: {
            color?: string;
            hidden?: boolean;
            lineStyle?: string;
            o: string | CPt;
            opacity?: number;
            r: string | number;
            tag?: string;
            thickness?: number;
        }
        • Optionalcolor?: string

          Color, blck by default

        • Optionalhidden?: boolean

          true to get the created circle masked

        • OptionallineStyle?: string

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

        • o: string | CPt

          Name (or tag if name is empty) of the center

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • r: string | number

          Radius of the circle or string giving a valid formula for the radius

        • Optionaltag?: string

          Tag to be applied on the created circle (if present)

        • Optionalthickness?: number

          Stroke thickness

      Returns Promise<undefined> | CCercleOR

      The created circle if isPromiseMode is false or promise that will be resolved when the circle is displayed