Vector3.ZERO
Represents the zero vector (0, 0, 0).
Method Signature
Vector3.zero()
Description
Use as canonical "no direction / no displacement" value.
Mathematical Definition
ZERO = (0,0,0)
Parameters
- None.
Returns
Vector3: zero-valued vector.
Mutability
- Returned object should be treated as read-only unless you intentionally copy it.
Edge Cases
- Normalizing
ZEROis undefined in strict math.
Usage Example
Vector3 velocity = Vector3.zero();
Mathematical Example
(5, -2, 1) + ZERO = (5, -2, 1)