Lines Matching full:circle
127 'circle', 'clear', 'clearstamp', 'clearstamps', 'clone', 'color',
929 "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
1292 ['arrow', 'blank', 'circle', ... , 'turtle']
1486 of 'degrees' for a full circle. Dafault value is
1853 def circle(self, radius, extent = None, steps = None):
1854 """ Draw a circle with given radius.
1861 Draw a circle with given radius. The center is radius units left
1863 circle is drawn. If extent is not given, draw the entire circle.
1864 If extent is not a full circle, one endpoint of the arc is the
1869 As the circle is approximated by an inscribed regular polygon,
1874 call: circle(radius) # full circle
1875 --or: circle(radius, extent) # arc
1876 --or: circle
1877 --or: circle(radius, steps=6) # 6-sided polygon
1880 >>> turtle.circle(50)
1881 >>> turtle.circle(120, 180) # semicircle
2667 'arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'.
2734 >>> turtle.shape("circle")
2757 >>> turtle.shape("circle")
2775 >>> turtle.shape("circle")
3945 circle(radius, 10)
3977 circle(50, 90)