| 101 | // --------------------------------------------------------------------------- |
| 102 | |
| 103 | bool ExtentAndRes::intersects(const ExtentAndRes &other) const { |
| 104 | return other.west < east && west <= other.west && other.south < north && |
| 105 | south <= other.north; |
| 106 | } |
| 107 | |
| 108 | // --------------------------------------------------------------------------- |
| 109 |
no outgoing calls