from icons import Star

yposition = 3.845
while yposition < 100:
	Rectangle(height = 7.69, y = yposition, color = "red")
	yposition = yposition + 15.38

Rectangle(height = 50, width = 50, x = 25, y = 25, color = "navy")

def draw_star(star, stop, starx, stary):
    while star < stop:
        Star(width = 4, height = 4, x = starx, y = stary, color = "white")
        star = star + 1
        starx = starx + 5

draw_star(1, 11, 3, 5)
draw_star(1, 11, 3, 15)
draw_star(1, 11, 3, 25)
draw_star(1, 11, 3, 35)
draw_star(1, 11, 3, 45)

US-Flag

by julia

Created 7 years, 6 months ago.