Vector3::multiply
This function is used to multiply a Vector3 by another Vector3 or scalar.
Syntax
``` vector.add(Vector3 otherVec); vector.add(number scalar); ```
Required Arguments
- otherVec: Vector3 or number: The vector or scalar to be added to the callee.
Returns
- The product.