Created
April 10, 2012 16:01
-
-
Save kragen/2352401 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
#!/usr/bin/python | |
"Very simple rotating cube in ASCII art." | |
import sys, time | |
w, h, out = 80, 24, sys.stdout | |
cube = [(x, y, z) for x in -1, 1 for y in -1, 1 for z in -1, 1] | |
s = 0.1 # sine | |
c = (1 - s**2)**0.5 # cosine | |
ym = h/3 # Y magnification | |
xm = 2*ym # X magnification | |
while True: | |
cube = [(c*x + s*z, y, -s*x + c*z) for x, y, z in cube] # Rotate by theta. | |
proj = [(round(w/2+xm*x/(z+2)), round(h/2+ym*y/(z+2))) for x, y, z in cube] | |
out.write('\033[H' + '\n'.join( | |
''.join(('*' if (x, y) in proj else ' ') for x in range(w)) | |
for y in range(h))) | |
out.flush() | |
time.sleep(1/15.0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment