Lines Matching defs:circle
129 'circle', 'clear', 'clearstamp', 'clearstamps', 'clone', 'color',
976 "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
1346 ['arrow', 'blank', 'circle', ... , 'turtle']
1572 of 'degrees' for a full circle. Default value is
1939 def circle(self, radius, extent = None, steps = None):
1940 """ Draw a circle with given radius.
1947 Draw a circle with given radius. The center is radius units left
1949 circle is drawn. If extent is not given, draw the entire circle.
1950 If extent is not a full circle, one endpoint of the arc is the
1955 As the circle is approximated by an inscribed regular polygon,
1960 call: circle(radius) # full circle
1961 --or: circle(radius, extent) # arc
1962 --or: circle(radius, extent, steps)
1963 --or: circle(radius, steps=6) # 6-sided polygon
1966 >>> turtle.circle(50)
1967 >>> turtle.circle(120, 180) # semicircle
2764 'arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'.
2834 >>> turtle.shape("circle")
2856 >>> turtle.shape("circle")
2887 >>> turtle.shape("circle")
2920 >>> turtle.shape("circle")
3335 >>> turtle.circle(60)
3356 >>> turtle.circle(60)
4066 circle(radius, 10)
4099 circle(50, 90)