random stuff

This commit is contained in:
2019-10-04 05:26:45 -07:00
parent 45b3eb8ad5
commit 1675072561
6 changed files with 40 additions and 4 deletions

16
misc/tg.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import time
import termgraphics
#g = termgraphics.TermGraphics(mode = termgraphics.MODE_EASCII)
g = termgraphics.TermGraphics()
g.clear()
for x in range(g.shape[0]):
y = int(0.5 * g.shape[1] * ((2*x/g.shape[0]-1)**3 + 1))
g.point((x,y))
g.draw()
time.sleep(0.1)