The Point object represents a location in a two-dimensional coordinate system, where x represents the horizontal axis and y represents the vertical axis.

Point 对象表示二维坐标系统中的某个位置,其中 x 表示水平轴,y 表示垂直轴。

构造函数

  • 参数

    • x: number = 0

      The horizontal coordinate. Default is 0.

    • y: number = 0

      The vertical coordinate. Default is 0.

    返回 Point

    Creates a new Point object based on the specified coordinates.

    根据指定坐标,创建一个新的 Point 对象。

属性

x: number

The horizontal coordinate of this point.

该点的水平坐标。

y: number

The vertical coordinate of this point.

该点的垂直坐标。

TEMP: Point = ...

Temporary public object for reuse.

临时使用的公用对象。

方法

  • 参数

    • x: number

      The horizontal coordinate of the target point.

    • y: number

      The vertical coordinate of the target point.

    返回 number

    The distance between the current point and the target point.

    Calculate the distance between the current point and the target point (x, y).

    计算当前点和目标点(x,y)的距离。

  • 参数

    • x: number

      The horizontal coordinate.

    • y: number

      The vertical coordinate.

    返回 Point

    The current Point object.

    Sets the members of Point to the specified values.

    将 Point 的成员设置为指定值。

  • 返回 string

    Returns a string that contains the values of the x and y coordinates.

    返回包含 x 和 y 坐标的值的字符串。