-
-
Save tamalw/2480 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# aldershot.rb | |
=begin | |
main file for aldershot mountain. | |
aldershot mountain is/will be a (currently) | |
simple chutes and ladders/snakes and | |
ladder/adders and ladders/moksha patamu/ | |
gyanbazi/leela ripoff. | |
=end | |
tmv = lambda do |c, x, y| | |
case c | |
when :b | |
stroke goldenrod | |
fill cornflowerblue | |
when :r | |
stroke forestgreen | |
fill tomato | |
end | |
strokewidth 5 | |
oval x, y, 40 | |
end | |
Shoes.app(:height => 760, :width => 760) do | |
background gradient(darkkhaki, olivedrab) | |
(5..755).step(75) do |x| | |
stroke maroon | |
strokewidth 5 | |
line 5, x, 755, x | |
stroke fuchsia | |
strokewidth 5 | |
line x, 5, x, 755 | |
end | |
tmv.call :b, 175, 325 | |
tmv.call :r, 550, 700 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment