Subtracts the given scalar from this 3D vector.
Vector3 subScalar(double s ) { x -= s; y -= s; z -= s; return this; }