Return True if this geometry is within the other.
(self, 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." |
| 524 | return self._topology(capi.ogr_within, other) |
| 525 | |
| 526 | def contains(self, other): |
| 527 | "Return True if this geometry contains the other." |