Copies the polygon by copying its vertices.
(self)
| 31 | vertex *= factor |
| 32 | |
| 33 | def copy(self): |
| 34 | "Copies the polygon by copying its vertices." |
| 35 | return Polygon(*(vertex.copy() for vertex in self.vertices)) |
| 36 | |
| 37 | ################################################################################ |
| 38 |