Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def intersects(self, polygon):
"""
Return whether the trajectory intersects the given polygon.
Parameters
----------
polygon : shapely Polygon
Polygon to test for intersections
Returns
-------
bool
"""
return intersects(self, polygon)