Created
May 4, 2012 22:09
-
-
Save apg/2598047 to your computer and use it in GitHub Desktop.
star
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
(define-image "/tmp/push.png" (500 500) | |
(steps | |
(move 0 0) | |
(rectangle 0 0 500 500) | |
(color 0.2 0.2 0.2 1.0) | |
(fill) | |
(push) | |
(translate 250 250) | |
(color 0.9 0.0 0.0 0.7) | |
(rectangle 0 0 100 100) | |
(fill) | |
(push) | |
(rotate 5) | |
(color 0.9 0.9 0.0 0.7) | |
(rectangle 0 0 100 100) | |
(fill) | |
(push) | |
(rotate 5) | |
(color 0.0 0.9 0.9 0.7) | |
(rectangle 0 0 100 100) | |
(fill) | |
(push) | |
(rotate 5) | |
(color 0.0 0.7 0.0 0.7) | |
(rectangle 0 0 100 100) | |
(fill) | |
(push) | |
(rotate 5) | |
(color 0.7 0.0 0.7 0.7) | |
(rectangle 0 0 100 100) | |
(fill))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment