Skip to content

Instantly share code, notes, and snippets.

@stuaxo
Created January 16, 2013 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuaxo/4543938 to your computer and use it in GitHub Desktop.
Save stuaxo/4543938 to your computer and use it in GitHub Desktop.
# Shoebot Sketch - Pleasing blue animated blue rectangle [stuaxo]
from math import cos, sin
def setup():
speed(100)
def draw():
transform(mode=CENTER)
translate(MOUSEX, MOUSEY)
for i in range(-5, 5):
push()
scale(sin(i + FRAME / 200.0) * 4)
rotate(i)
rect(0, 0, 40, 40, fill=(0.2, 0.5, 0.9, 0.1), roundness=0.5)
pop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment