Stop recording the vertices of a polygon. No argument. Stop recording the vertices of a polygon. Current turtle position is last point of polygon. This will be connected with the first point. Example (for a Turtle instance named turtle): >>> turtle.end_poly
(self)
| 3602 | self._creatingPoly = True |
| 3603 | |
| 3604 | def end_poly(self): |
| 3605 | """Stop recording the vertices of a polygon. |
| 3606 | |
| 3607 | No argument. |
| 3608 | |
| 3609 | Stop recording the vertices of a polygon. Current turtle position is |
| 3610 | last point of polygon. This will be connected with the first point. |
| 3611 | |
| 3612 | Example (for a Turtle instance named turtle): |
| 3613 | >>> turtle.end_poly() |
| 3614 | """ |
| 3615 | self._creatingPoly = False |
| 3616 | |
| 3617 | def get_poly(self): |
| 3618 | """Return the lastly recorded polygon. |
no outgoing calls