sesaparcours
    Preparing search index...
    • Adds a point linked to a line (or ray or segment) syntaxes addLinkedPointLine(d, x, y), addLinkedPointLine(d, x, y, name), addLinkedPointLine(d, x, y, name, color), addLinkedPointLine(d, x, y, name, color, pointStyle) and addLinkedPointLine(d, x, y, name, color, pointStyle, rep) are allowed too

      Parameters

      • options: {
            absCoord?: boolean;
            color?: string;
            d: 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)

        • Optionalcolor?: string

          Color, black by default

        • d: string

          Tag of the line (or ray or segment) the point is to be linked to

        • OptionalfontSize?: number

          Size of the font used for the point name

        • Optionalhidden?: boolean

          true to get the created point masked

        • 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

          Point 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 used to establish the starting position of the linked point ((by orthogonal projection on the line)

        • y: string | number | CValDyn

          y-coordinate of the point used to establish the starting position of the linked point ((by orthogonal projection on the line)

      Returns Promise<undefined> | CPointLieCercle

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