Created
November 6, 2015 05:27
-
-
Save jasonrclark/2c618833de3e81fcf058 to your computer and use it in GitHub Desktop.
Rocket!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://github.com/shoes/shoes4 | |
# @jasonrclark | |
Shoes.app width: 450, height: 800 do | |
oval 150, 75, 150, 150, fill: blue | |
rect 100, 500, 250, 50, fill: red | |
rect 150, 150, 150, 400, fill: white | |
rect 150, 400, 75, 50, fill: black | |
every 0.01 do | |
5.times do | |
color = [red, orange, yellow, pink].sample | |
rect rand(150..300), 550, rand(2..5), | |
rand(50..250), fill: color, stroke: color | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment