Perform a TurtleScreen update.
(self)
| 1296 | self._updatecounter %= self._tracing |
| 1297 | |
| 1298 | def update(self): |
| 1299 | """Perform a TurtleScreen update. |
| 1300 | """ |
| 1301 | tracing = self._tracing |
| 1302 | self._tracing = True |
| 1303 | for t in self.turtles(): |
| 1304 | t._update_data() |
| 1305 | t._drawturtle() |
| 1306 | self._tracing = tracing |
| 1307 | self._update() |
| 1308 | |
| 1309 | def window_width(self): |
| 1310 | """ Return the width of the turtle window. |
no test coverage detected