Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

vector3.md 750B

Vector3

A vector in 3D space.

Since: 0.4.0

Properties

x

vector.x: number

The x coordinate of the vector.

y

vector.y: number

The y coordinate of the vector.

z

vector.z: number

The z coordinate of the vector.

Methods

length

vector.length(): number

Compute the length of the vector: sqrt(x^2 + y^2 + z^2).

Returns

The length of the vector.

equals

vector.equals(v: Vector3): boolean

Check if this and v have the same coordinates.

Arguments

  • v: Vector3. A vector.

Returns

true if this and v have the same coordinates.

toString

vector.toString(): string

Generate a string representation of the vector.

Returns

A string representation of the vector.