| 468 | } |
| 469 | |
| 470 | template <typename T> tRECT<T> tRECT<T>::round() const { |
| 471 | return tRECT<T>( Math::round( Left ), Math::round( Top ), Math::round( Right ), |
| 472 | Math::round( Bottom ) ); |
| 473 | } |
| 474 | |
| 475 | template <typename T> tRECT<T> tRECT<T>::roundUp() const { |
| 476 | return tRECT<T>( Math::roundUp( Left ), Math::roundUp( Top ), Math::roundUp( Right ), |
no test coverage detected