Rectangle(color="#c0cf3a")

def draw_circle(width, x, y):
    Circle(width=width, height=width, x=x, y=y)
    
draw_circle(10, 10, 10)
draw_circle(15, 25, 25)
draw_circle(30, 50, 50)
draw_circle(40, 80, 80)

Function Example 3

by jamie

Created 5 years, 9 months ago.