# This level is a place for making flower art.
# The real goal is to experiment and have fun!
# If you draw something with at least 1000 flowers, you will "succeed" at the level.
def draw(side):
angle=0
ogAngle=2*Math.PI/side
while True:
ogY=71
ogX=85
circleLen=10
mx=circleLen*Math.sin(angle)+ogX
my=circleLen*Math.cos(angle)+ogY
hero.moveXY(mx, my)
angle=angle+ogAngle
draw(2.6) #change number to any number u want between 1 to 10 (can be decimal)