sesaparcours
    Preparing search index...
    • Adds a point defined by (x; y) coordinates in a frame rep (system of axis). For a free point use addFreePoint and specify options.rep) syntaxes addPointXY(x, y), addPointXY(x, y, name), addPointXY(x, y, name, color), addPointXY(x, y, name, color, pointStyle) and addPointXY(x, y, name, color, pointStyle, rep) are allowed too

      Parameters

      • options: {
            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;
        }
        • Optionalcolor?: string

          Color, black by default

        • OptionalfontSize?: number

          Font size of the name

        • Optionalhidden?: boolean

          true to get the created point masked

        • OptionalhiddenName?: boolean

          true to get the created point name masked

        • Optionalname?: string

          Name of the point to be created

        • OptionaloffsetX?: number

          x-shift of the name

        • OptionaloffsetY?: number

          y-shift of the name

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • OptionalpointStyle?: string

          Point style (o|O|OO|x|X|+|<>|[]|.) or (littleround|round|biground|mult|bigmult|cross|diamond|square|pixel|)

        • 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 point (if present)

        • x: string | number | CValDyn

          x-coordinate of the point : number or valid formula

        • y: string | number | CValDyn

          y-coordinate of the point : number or valid formula

      Returns Promise<undefined> | CPointDansRepere

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