Searched refs:shapesize (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/turtledemo/ |
D | round_dance.py | 44 shapesize(s) 52 shapesize(1) 79 shapesize(cs)
|
D | planet_and_moon.py | 97 sun.shapesize(1.8) 101 earth.shapesize(0.8) 104 moon.shapesize(0.5)
|
D | sorting_animate.py | 28 self.shapesize(size * 1.5, 1.5, 2) # square-->rectangle 50 width, _, _ = d.shapesize() 78 width, _, _ = b.shapesize()
|
D | paint.py | 41 shapesize(.5)
|
D | minimal_hanoi.py | 26 self.shapesize(1.5, n*1.5, 2) # square-->rectangle
|
D | colormixer.py | 11 self.shapesize(3,3,5)
|
D | clock.py | 74 hand.shapesize(1, 1, 3)
|
D | penrose.py | 93 shapesize(l/100.0, l/100.0, th)
|
D | nim.py | 97 self.shapesize(HUNIT/10.0, WUNIT/20.0)
|
/third_party/python/Doc/library/ |
D | turtle.rst | 166 | :func:`shapesize` | :func:`turtlesize` 1190 :func:`shapesize`. 1193 ``resizemode("user")`` is called by :func:`shapesize` when used with arguments. 1205 .. function:: shapesize(stretch_wid=None, stretch_len=None, outline=None) 1222 >>> turtle.shapesize() 1225 >>> turtle.shapesize(5, 5, 12) 1226 >>> turtle.shapesize() 1228 >>> turtle.shapesize(outline=8) 1229 >>> turtle.shapesize() 1248 >>> turtle.shapesize(5,2) [all …]
|
/third_party/python/Lib/ |
D | turtle.py | 2781 def shapesize(self, stretch_wid=None, stretch_len=None, outline=None): member in RawTurtle 3653 turtlesize = shapesize
|