Start recording the vertices of a polygon. No argument. Start recording the vertices of a polygon. Current turtle position is first point of polygon. Example (for a Turtle instance named turtle): >>> turtle.begin_poly()
(self)
| 3335 | self.undobuffer.cumulate = False |
| 3336 | |
| 3337 | def begin_poly(self): |
| 3338 | """Start recording the vertices of a polygon. |
| 3339 | |
| 3340 | No argument. |
| 3341 | |
| 3342 | Start recording the vertices of a polygon. Current turtle position |
| 3343 | is first point of polygon. |
| 3344 | |
| 3345 | Example (for a Turtle instance named turtle): |
| 3346 | >>> turtle.begin_poly() |
| 3347 | """ |
| 3348 | self._poly = [self._position] |
| 3349 | self._creatingPoly = True |
| 3350 | |
| 3351 | def end_poly(self): |
| 3352 | """Stop recording the vertices of a polygon. |
nothing calls this directly
no outgoing calls
no test coverage detected