Divides the given scalar through this 3D vector.
Vector3 divideScalar(double s ) { x /= s; y /= s; z /= s; return this; }