Divides this vector by scalar s. Sets vector to ( 0, 0, 0 ) if s = 0.
Vector3 divideScalar(double scalar) { return multiplyScalar(1 / scalar); }