Vector3::subtract
This function is used to subtract a Vector3 or scalar from another Vector3.
Syntax
``` vector.subtract(Vector3 otherVec); vector.subtract(number scalar); ```
Required Arguments
- otherVec: Vector3: The vector or scalar to be subtracted from the callee.
Returns
- The difference.