sesaparcours
    Preparing search index...
    • Adds a point linked to a circle (or a circle arc) syntaxes addLinkedPointCircle(c, x, y), addLinkedPointCircle(c, x, y, name), addLinkedPointCircle(c, x, y, name, color), addLinkedPointCircle(c, x, y, name, color, pointStyle) and addLinkedPointCircle(c, x, y, name, color, pointStyle, rep) are allowed too

      Parameters

      • options: {
            absCoord?: boolean;
            c: string;
            color?: string;
            fontSize?: number;
            hidden?: boolean;
            hiddenName?: boolean;
            name?: string;
            offsetX?: number;
            offsetY?: number;
            opacity?: number;
            pointStyle?: string;
            rep?: string;
            tag?: string;
            x: string | number | CValDyn;
            y: string | number | CValDyn;
        }
        • OptionalabsCoord?: boolean

          set to true if x,y should be considered absolute in the svg (in that case rep is ignored), useless if there is no frame (in that case x,y will be considered absolute regardless of this property)

        • c: string

          The tag of the circle the created point is to be linked to

        • Optionalcolor?: string

          Color, black by default

        • OptionalfontSize?: number

          Size of the font used for the point name

        • Optionalhidden?: boolean

          true to get the created linked point mased

        • OptionalhiddenName?: boolean

          true to get the linked point name masked

        • Optionalname?: string

          Name of the linked point to be created

        • OptionaloffsetX?: number

          x-shift of the linked point name

        • OptionaloffsetY?: number

          y-shift of the linked point name

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • OptionalpointStyle?: string

          Points style (square|round|cross|mult|littleround|diamond|pixel|biground|bigmult)

        • Optionalrep?: string

          tag of the frame (system of coordinates), mandatory only if the figure contains several frames

        • Optionaltag?: string

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

        • x: string | number | CValDyn

          x-coordinate of the point that is to be joined from the circle center to get the starting position of the linked point

        • y: string | number | CValDyn

          y-coordinate of the point that is to be joined from the circle center to get the starting position of the linked point

      Returns Promise<undefined> | CPointLieCercle

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