Zastava Makedonije Paygame 7mi Razred

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

# bojimo pozadinu u crveno

prozor.fill(pg.Color("red"))

#temena trouglova

temena1 = [(200,200), (0, 0), (50, 0)]

temena2 = [(200,200), (180, 0), (220, 0)]

temena3 = [(200,200), (400, 0), (350, 0)]

temena4 = [(200,200), (0, 180), (0, 220)]

temena5 = [(200,200), (400, 180), (400, 220)]

temena6 = [(200,200), (0, 400), (50, 400)]

temena7 = [(200,200), (180, 400), (220, 420)]

temena8 = [(200,200), (400, 400), (350, 400)]

# crtamo mnogougao popunjen crvenom bojom

pg.draw.polygon(prozor, pg.Color("yellow"), temena1)

pg.draw.polygon(prozor, pg.Color("yellow"), temena2)

pg.draw.polygon(prozor, pg.Color("yellow"), temena3)

pg.draw.polygon(prozor, pg.Color("yellow"), temena4)

pg.draw.polygon(prozor, pg.Color("yellow"), temena5)

pg.draw.polygon(prozor, pg.Color("yellow"), temena6)

pg.draw.polygon(prozor, pg.Color("yellow"), temena7)

pg.draw.polygon(prozor, pg.Color("yellow"), temena8)

pg.draw.circle(prozor,pg.Color("red"),(200,200),70)

pg.draw.circle(prozor,pg.Color("yellow"),(200,200),50)

You might also like