| 330 | } |
| 331 | |
| 332 | bool Rect::intersectsRect(const Rect& rect) const { |
| 333 | return !(getRight() < rect.getLeft() || rect.getRight() < getLeft() || getTop() < rect.getBottom() || rect.getTop() < getBottom()); |
| 334 | } |
| 335 | |
| 336 | // AffineTransform |
| 337 |
no test coverage detected