Return True if this geometry crosses the other.
(self, other)
| 516 | return self._topology(capi.ogr_touches, other) |
| 517 | |
| 518 | def crosses(self, other): |
| 519 | "Return True if this geometry crosses the other." |
| 520 | return self._topology(capi.ogr_crosses, other) |
| 521 | |
| 522 | def within(self, other): |
| 523 | "Return True if this geometry is within the other." |