| 362 | } |
| 363 | |
| 364 | template <typename T> T tRECT<T>::area() const { |
| 365 | return ( Right - Left ) * ( Bottom - Top ); |
| 366 | } |
| 367 | |
| 368 | template <typename T> T tRECT<T>::mergedArea( const tRECT<T>& rect ) const { |
| 369 | return ( eemax( Right, rect.Right ) - eemin( Left, rect.Left ) ) * |
no outgoing calls
no test coverage detected