c64-livecoding/editor/standing-sierpinsky.c6l

13 lines
198 B
Text

if first() then
clear_screen()
end
yh = 0
for y do 200 times
x = bitand(time(), y)
xo = x - 100 - yh
pixel_draw(xo, y)
if bitand(y, 1) == 1 then
yh = yh + 1
end
end