The Vector2 class is used to create two-dimensional vectors.

Vector2 类用于创建二维向量。

实现

  • IClone

构造函数

属性

x: number

X-axis coordinate.

X 轴坐标。

y: number

Y-axis coordinate.

Y 轴坐标。

ONE: Readonly<Vector2> = ...

One vector, read-only.

单位向量,只读。

TEMP: Vector2 = ...

Temporary Vector2 for calculations.

用于计算的临时 Vector2。

ZERO: Readonly<Vector2> = ...

Zero vector, read-only.

零向量,只读。

方法

  • 参数

    • array: ArrayLike<number>

      The source array.

    • offset: number = 0

      The offset in the array. Default is 0.

    返回 void

    Copies values from an array.

    从数组中拷贝值。

  • 返回 number[]

    An array representation of the vector.

    Converts the vector to an array.

    将向量转换为数组。

  • 参数

    • array: { [n: number]: number }

      The target array.

    • offset: number = 0

      The offset in the array. Default is 0.

    返回 void

    Writes the vector to a array.

    将向量写入数组。