Return True if the geometry contains the other, else False.
(self, other)
| 29 | self.prepared = True |
| 30 | |
| 31 | def contains(self, other): |
| 32 | """Return True if the geometry contains the other, else False.""" |
| 33 | return self.context.contains(other) |
| 34 | |
| 35 | def contains_properly(self, other): |
| 36 | """Return True if the geometry properly contains the other, else False.""" |
no outgoing calls