How do I modify an existing Polygon? For a start, I'd like to add a Point to its exterior.
poly = Polygon([(0, 0), (1, 1), (1, 0)])
I was looking for something like this:
poly.append_at(idx=3, Point(1, -1))
But I cannot find any even similar methods for doing this.