sesaparcours
    Preparing search index...
    • Adds the indirect circle arc of center o starting from point a and ending at the intersection point of ray [o;b) and the circle syntaxes addArcIndirectOAB(o, a, b), addArcIndirectOAB(o, a, b, color), addArcIndirectOAB(o, a, b, color, lineStyle) and addArcIndirectOAB(o, a, b, color, lineStyle, thickness) are allowed too

      Parameters

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

          Point or point name of the starting point of the arc

        • b: string | CPt

          Point or point name of the point providing the final extremity of the arc (by intersection of a ray of origin o with the circle)

        • Optionalcolor?: string

          Color, black by default

        • Optionalhidden?: boolean

          true to get the created arc masked

        • OptionallineStyle?: string

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

        • o: string | CPt

          Point or point name of the center point of the arc

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • Optionaltag?: string

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

        • Optionalthickness?: number

          Stroke thickness

      Returns Promise<undefined> | CArcDeCercleIndirect

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