mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-15 22:13:05 +00:00
27 lines
679 B
Python
27 lines
679 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from math import sqrt, sin, cos, acos, pi
|
||
|
|
||
|
def f(t, k):
|
||
|
t = float(t)
|
||
|
r = k/cos(0.4*acos(sin(2.5*(t+pi/2))))
|
||
|
return r*cos(t),r*sin(t)
|
||
|
|
||
|
coords = []
|
||
|
for k_mul in range(500):
|
||
|
any = False
|
||
|
for t_mul in range(int(pi*1000+1)):
|
||
|
a, b = f(float(t_mul/100), float(k_mul)/10.0)
|
||
|
x = round(20+a*.6)
|
||
|
y = round(24+b)
|
||
|
if x < 0 or x > 39 or y < 0 or y > 47 or (x,y) in coords:
|
||
|
continue
|
||
|
coords.append((x,y))
|
||
|
any = True
|
||
|
if any:
|
||
|
coords.append((255,255))
|
||
|
|
||
|
with open("../../src/fx/fx.hgr.star.data.a", "w") as f:
|
||
|
for x, y in coords:
|
||
|
f.write(" !byte %s,%s\n" % (y,x))
|