inverse method
Vector3
inverse()
Invert this vector
Implementation
Vector3 inverse(){
x *= -1;
y *= -1;
z *= -1;
return this;
}
Invert this vector
Vector3 inverse(){
x *= -1;
y *= -1;
z *= -1;
return this;
}