# ShapesEx4.py

from gpanel import *

makeGPanel(-10, 10, -10, 10)

corners = [(-5, -2), (-2, -6), (1, -5), (4, 2), (-1, 3)]
setColor("fuchsia")
fillPolygon(corners)
keep()            
