Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,17 +1,22 @@
cx = -0.7
cy = 0.27015
for y = 0 to 299 : for x = 0 to 299
zx = (x - 150) / 100
zy = (y - 150) / 150
gcolor3 0 0 0
for iter = 0 to 127
if zx * zx + zy * zy > 4
gcolor3 iter * 5 0 0
break 1
.
h = zx * zx - zy * zy + cx
zy = 2 * zx * zy + cy
zx = h
fastfunc getiter x y .
cx = -0.7
cy = 0.27015
while iter < 127
if x * x + y * y > 4 : return iter
h = x * x - y * y + cx
y = 2 * x * y + cy
x = h
iter += 1
.
.
gbackground 0
for y = 10 step 0.3 to 90
for x = 0 step 0.3 to 100
gcolor3 0 0 0
iter = getiter ((x - 50) / 33) ((y - 50) / 33)
if iter < 128
gcolor3 iter * 0.05 0 0
.
grect x y 0.4 0.4
.
grect x / 3 y / 3 0.4 0.4
.