Adds the scalar value s to this vector's x, y and z values.
Vector3 addScalar(double s) { x += s; y += s; z += s; return this; }