Perform a TurtleScreen update.
(self)
| 1194 | self._updatecounter %= self._tracing |
| 1195 | |
| 1196 | def update(self): |
| 1197 | """Perform a TurtleScreen update. |
| 1198 | """ |
| 1199 | tracing = self._tracing |
| 1200 | self._tracing = True |
| 1201 | for t in self.turtles(): |
| 1202 | t._update_data() |
| 1203 | t._drawturtle() |
| 1204 | self._tracing = tracing |
| 1205 | self._update() |
| 1206 | |
| 1207 | def window_width(self): |
| 1208 | """ Return the width of the turtle window. |
no test coverage detected