| 266 | } |
| 267 | |
| 268 | template <typename T> tSize<T> tRECT<T>::getSize() const { |
| 269 | return tSize<T>( eeabs( Right - Left ), eeabs( Bottom - Top ) ); |
| 270 | } |
| 271 | |
| 272 | template <typename T> void tRECT<T>::normalize() { |
| 273 | if ( Left > Right ) std::swap( Left, Right ); |
no test coverage detected