inverse method
Vector cross product @param target Optional target to save in.
Implementation
Vec3 inverse(){
x *=-1;
y *= -1;
z *= -1;
return this;
}
Vector cross product @param target Optional target to save in.
Vec3 inverse(){
x *=-1;
y *= -1;
z *= -1;
return this;
}