vector

Veraltete anzeigen

This library implements functionality for the vector type in addition to the built-in primitive operator support. It uses vectors with three components (x, y, and z).

Individual vector components can be accessed using the fields x or X, y or Y, z or Z. Since vector values are immutable, writing to individual components is not supported.

Zusammenfassung

Funktionen

Eigenschaften

  • Constant vector with all components set to 0.

  • Constant vector with all components set to 1.

Funktionen

create

Creates a new vector with the given component values.

Parameter

Rückgaben

magnitude

Calculates the magnitude of a given vector.

Parameter

vec: vector

Rückgaben

normalize

Computes the normalized version (unit vector) of a given vector.

Parameter

vec: vector

Rückgaben

cross

Computes the cross product of two vectors.

Parameter

vec1: vector
vec2: vector

Rückgaben

Computes the dot product of two vectors.

Parameter

vec1: vector
vec2: vector

Rückgaben

angle

Computes the angle between two vectors in radians. The axis, if specified, is used to determine the sign of the angle.

Parameter

vec1: vector
vec2: vector
axis: vector

Rückgaben

floor

Applies math.floor() to every component of the input vector.

Parameter

vec: vector

Rückgaben

ceil

Applies math.ceil() to every component of the input vector.

Parameter

vec: vector

Rückgaben

Applies math.abs() to every component of the input vector.

Parameter

vec: vector

Rückgaben

sign

Applies math.sign() to every component of the input vector.

Parameter

vec: vector

Rückgaben

clamp

Applies math.clamp() to every component of the input vector.

Parameter

vec: vector
min: vector
max: vector

Rückgaben

Applies math.max() to the corresponding components of the input vectors.

Parameter

...: vector

Rückgaben

Applies math.min() to the corresponding components of the input vectors.

Parameter

...: vector

Rückgaben

Eigenschaften

zero

Constant vector with all components set to 0.

Constant vector with all components set to 1.