Multiplies the given scalar with this 3D vector.
Vector3 multiplyScalar(double s ) { x *= s; y *= s; z *= s; return this; }