inline Size<T>& Contract(T value); inline Size<T>& Contract(const Size<T> & sz); inline Size<T>& Contract(T w, T h);
Contract contracts the current size by subtracting a fixed value from each of its components. The following expression may be used to represent the result:
(Width, Height) = (Width - [sz.Width, value, w], Height - [sz.Height, value, h])
A size whose components are subtracted from those of a current size.