| 90 | // --------------------------------------------------------------------------- |
| 91 | |
| 92 | bool ExtentAndRes::intersects(const ExtentAndRes &other) const { |
| 93 | return other.west < east && west <= other.west && other.south < north && |
| 94 | south <= other.north; |
| 95 | } |
| 96 | |
| 97 | // --------------------------------------------------------------------------- |
| 98 |
no outgoing calls
no test coverage detected