Perform a TurtleScreen update.
(self)
| 1323 | self._updatecounter %= self._tracing |
| 1324 | |
| 1325 | def update(self): |
| 1326 | """Perform a TurtleScreen update. |
| 1327 | """ |
| 1328 | tracing = self._tracing |
| 1329 | self._tracing = True |
| 1330 | for t in self.turtles(): |
| 1331 | t._update_data() |
| 1332 | t._drawturtle() |
| 1333 | self._tracing = tracing |
| 1334 | self._update() |
| 1335 | |
| 1336 | def window_width(self): |
| 1337 | """ Return the width of the turtle window. |
no test coverage detected