1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-26 10:21:30 +00:00

spinner while compiling; updated presets

This commit is contained in:
Steven Hugg
2017-04-12 12:23:24 -04:00
parent 1e6a43b273
commit 9da265f7e5
8 changed files with 288 additions and 150 deletions
+13
View File
@@ -0,0 +1,13 @@
import math
#n = 8
#m = 127
n = 64
m = 127
for i in range(0,n*4):
print '%d,' % int(round(math.sin(i*math.pi/2/n)*m)),
if i % 16 == 15:
print