Created
June 15, 2016 12:10
-
-
Save iArnold/9189f6d7f9614d35ec526b4b5d9df25a to your computer and use it in GitHub Desktop.
Circle around
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
Red [ | |
Title: "Planet orbits a star" | |
file: %one-planet.red | |
Author: "Arnold van Hofwegen" | |
needs: view | |
] | |
cycle: make block! 361 | |
repeat i 360 [append cycle i] | |
append cycle 1 | |
n: 360 | |
tau: pi * 2 | |
step-orbit: func [][ | |
n: select cycle n | |
flo: tau * n / 360 | |
b1/draw: compose [pen yellow fill-pen yellow circle 200x200 50 pen blue fill-pen blue circle (200x200 + as-pair 150 * sin flo 150 * cos flo) 10] | |
show b1 | |
] | |
view [ | |
title "Planet orbits a star" | |
size 400x460 | |
origin 0x0 | |
b1: base 0.0.0 400x400 draw [] rate 100 on-time [step-orbit] | |
return | |
btn: button "Stop this Universe" [unview] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment