@@ -193,8 +193,8 @@ Methods of TurtleScreen/Screen
193
193
Window control
194
194
| :func:`bgcolor`
195
195
| :func:`bgpic`
196
- | :func:`clear` | :func:` clearscreen`
197
- | :func:`reset` | :func:` resetscreen`
196
+ | :func:`clearscreen`
197
+ | :func:`resetscreen`
198
198
| :func:`screensize`
199
199
| :func:`setworldcoordinates`
200
200
@@ -1069,7 +1069,6 @@ More drawing control
1069
1069
~~~~~~~~~~~~~~~~~~~~
1070
1070
1071
1071
.. function :: reset()
1072
- :noindex:
1073
1072
1074
1073
Delete the turtle's drawings from the screen, re-center the turtle and set
1075
1074
variables to the default values.
@@ -1091,7 +1090,6 @@ More drawing control
1091
1090
1092
1091
1093
1092
.. function :: clear()
1094
- :noindex:
1095
1093
1096
1094
Delete the turtle's drawings from the screen. Do not move turtle. State and
1097
1095
position of the turtle as well as drawings of other turtles are not affected.
@@ -1627,29 +1625,35 @@ Window control
1627
1625
1628
1626
1629
1627
.. function :: clear()
1630
- clearscreen()
1631
-
1632
- Delete all drawings and all turtles from the TurtleScreen. Reset the now
1633
- empty TurtleScreen to its initial state: white background, no background
1634
- image, no event bindings and tracing on.
1628
+ :noindex:
1635
1629
1636
1630
.. note ::
1637
1631
This TurtleScreen method is available as a global function only under the
1638
1632
name ``clearscreen ``. The global function ``clear `` is a different one
1639
1633
derived from the Turtle method ``clear ``.
1640
1634
1641
1635
1642
- .. function :: reset()
1643
- resetscreen()
1636
+ .. function :: clearscreen()
1644
1637
1645
- Reset all Turtles on the Screen to their initial state.
1638
+ Delete all drawings and all turtles from the TurtleScreen. Reset the now
1639
+ empty TurtleScreen to its initial state: white background, no background
1640
+ image, no event bindings and tracing on.
1641
+
1642
+
1643
+ .. function :: reset()
1644
+ :noindex:
1646
1645
1647
1646
.. note ::
1648
1647
This TurtleScreen method is available as a global function only under the
1649
1648
name ``resetscreen ``. The global function ``reset `` is another one
1650
1649
derived from the Turtle method ``reset ``.
1651
1650
1652
1651
1652
+ .. function :: resetscreen()
1653
+
1654
+ Reset all Turtles on the Screen to their initial state.
1655
+
1656
+
1653
1657
.. function :: screensize(canvwidth=None, canvheight=None, bg=None)
1654
1658
1655
1659
:param canvwidth: positive integer, new width of canvas in pixels
0 commit comments