Adds the given scalar to this 3D vector.
Vector3 addScalar(double s ) { x += s; y += s; z += s; return this; }