Clones the instance.
Compares the vector to v, and returns true if they are approximately equal.
Calculates the linear interpolation (lerp) between the current value and v, using a as the interpolation factor, then updates the vector's value to the result.
The interpolation factor, specified as a number between [0, 1].
Sets the vector's component values to those specified in x, y, z and w.
A 4-dimensional vector.
Methods that manipulate values are generally destructive. To preserve the original values, explicitly call
clone()to create a duplicate instance.