Returns a directional vector on the negative z axis, Vector3(0, 0, 1).
Returns a new Vector3
either with the provided x, y, and z dimensions,
or from the provided Partial<Vector3>
object populated with zeroes
wherever a component is missing.
Providing no values to this function will result in a zero-length vector.
Returns a vector that is the cross product of two vectors.
The cross product of two vectors results in a third vector which is perpendicular to the two input vectors. The result's magnitude is equal to the magnitudes of the two inputs multiplied together and then multiplied by the sine of the angle between the inputs. You can determine the direction of the result vector using the "left hand rule".
Returns a directional vector on the negative y axis, Vector3(0, -1, 0).
Returns the Euler angle, in radians with the xyz
ordering, between two vectors.
This method will normalize both vectors for the calculation, and uses the algorithm described in https://www.xarg.org/proof/quaternion-from-two-vectors/.
Returns a directional vector on the positive z axis, Vector3(0, 0, -1).
Creates a Vector3
from an array. Pass offset
to read values from the
starting index.
Parses a JSON string representation of a Vector3 and returns an object.
A JSON string, either in the form [x,y,z]
or {"x": 0, "y": 0, "z": 0}
A parsed Vector3.
Checks if each component of the given vector is populated with a numeric component. A component is invalid if it contains a non-finite or NaN value.
Returns a directional vector on the negative x axis, Vector3(-1, 0, 0).
Returns the straight-line length from (0, 0, 0) to the given vector.
Returns the straight-line length from (0, 0, 0) to the given vector).
When comparing lengths of vectors, you should use this function as it's slightly more efficient to calculate.
Returns a vector at the origin, Vector3(0, 0, 0).
Performs a projection of a vector
onto onNormal
.
A projection is represented as the nearest point along a normal to a vector, which constructs a triangle from the origin, to the vector, to the projected point.
Vector --> * * <-- Projected
\
\ | <-- Normal
\|
* <-- Origin
Returns a directional vector on the positive x axis, Vector3(1, 0, 0).
Converts a Vector3 to an array where the values of the vector will be represented as [x, y, z];
Maps a normalized device coordinate (NDC) space to world space coordinates.
A point in normalized device coordinates.
A camera's world matrix.
A camera's inverse projection matrix.
A point in world space coordinates.
Returns a directional vector on the positive y axis, Vector3(0, 1, 0).
A
Vector3
representation as an array.