Return the width of the turtle window. Example (for a TurtleScreen instance named screen): >>> screen.window_width() 640
(self)
| 1334 | self._update() |
| 1335 | |
| 1336 | def window_width(self): |
| 1337 | """ Return the width of the turtle window. |
| 1338 | |
| 1339 | Example (for a TurtleScreen instance named screen): |
| 1340 | >>> screen.window_width() |
| 1341 | 640 |
| 1342 | """ |
| 1343 | return self._window_size()[0] |
| 1344 | |
| 1345 | def window_height(self): |
| 1346 | """ Return the height of the turtle window. |
nothing calls this directly
no test coverage detected