Component-wise multiply.
Vector3 Vector3Multiply(Vector3 v1, Vector3 v2) => Vector3(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z);