Size::/

Size::/
inline const Size<T> operator /(const Size<T> & sz) const;
inline const Size<T> operator /(T value) const;
Description

The operator / function divides each of its components by a fixed value. The following expression may be used to represent the result:

   (result.Width, result.height) = (sz1.Width / [sz2.Width, value], sz1.Height / [sz2.Height, value])
Parameters
Parameters 
Description 
const Size<T> & sz 
A value that divides both components of a passed size. 
T value 
The passed sizes whose components divide those of the first size respectively. 
Return Value

A new Size whose components are determined by dividing the components of a passed size by alternate values.