3template <
typename Type>
6template <
typename Type>
13template <
typename Type>
16 return (width > 0) && (height > 0);
19template <
typename Type>
22 return v1.height == v2.height && v1.width == v2.width;
25template <
typename Type>
28 return v1.height != v2.height || v1.width != v2.width;
A simple size class templated on the type for width and height.
Definition Size.h:9
bool HasNonZeroArea() const
Returns true if the area described by the size is non zero.
Definition Size_inl.h:14
plSizeTemplate()
Default constructor does not initialize the data.