Lines Matching refs:TurtleScreen
58 1. The :class:`TurtleScreen` class defines graphics windows as a playground for
64 :class:`TurtleScreen` subclass. This function should be used when
68 All methods of TurtleScreen/Screen also exist as functions, i.e. as part of
72 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas
73 or TurtleScreen as argument, so the RawTurtle objects know where to draw.
190 Methods of TurtleScreen/Screen
1055 :param arg: object to be written to the TurtleScreen
1117 name of current shape. Shape with *name* must exist in the TurtleScreen's
1435 Return the :class:`TurtleScreen` object the turtle is drawing on.
1436 TurtleScreen methods can then be called for that object.
1509 Methods of TurtleScreen/Screen and corresponding functions
1512 Most of the examples in this section refer to a TurtleScreen instance called
1529 Set or return background color of the TurtleScreen.
1560 Delete all drawings and all turtles from the TurtleScreen. Reset the now
1561 empty TurtleScreen to its initial state: white background, no background
1565 This TurtleScreen method is available as a global function only under the
1576 This TurtleScreen method is available as a global function only under the
1680 Perform a TurtleScreen update. To be used when tracer is turned off.
1690 Set focus on TurtleScreen (in order to collect key-events). Dummy arguments
1701 are removed. Remark: in order to be able to register key-events, TurtleScreen
1721 Remark: in order to be able to register key-events, TurtleScreen
1745 Example for a TurtleScreen instance named ``screen`` and a Turtle instance
1750 >>> screen.onclick(turtle.goto) # Subsequently clicking into the TurtleScreen will
1755 This TurtleScreen method is available as a global function only under the
1879 Return the Canvas of this TurtleScreen. Useful for insiders who know what to
1923 Add a turtle shape to TurtleScreen's shapelist. Only thusly registered
1955 Methods specific to Screen, not inherited from TurtleScreen
2020 :class:`TurtleScreen`
2032 .. class:: TurtleScreen(cv)
2041 Subclass of TurtleScreen, with :ref:`four methods added <screenspecific>`.
2122 Set or return backgroundcolor of the TurtleScreen.
2154 Set or return backgroundcolor of the TurtleScreen.
2385 :class:`TurtleScreen`/:class:`Screen`-methods.)