REDUCE = 0.999;
def setup()
size(400, 400)
translate(100, 330)
rotate(0.3)
fill(255, 0, 0, 0)
background(0)
no_stroke()
smooth()
fill(255, 0, 0, 20) # transparency makes for almost '3d' look
srand = rand(999)
shell(srand, -0.008, 1.5, 25)
end
def shell(first, rot, disp, sz)
sec = rand(999)
if (sec == first) then
save_frame("probability.png")
else
sz *= REDUCE;
disp *= REDUCE;
translate(disp, 0)
rotate(rot)
ellipse(disp, 0, sz, sz)
shell(sec, rot, disp, sz) # recursive call with updated random
end
end
By its probabilistic nature this script will sometimes produce nothing, and occasionally it will crash at the java stack limit, here is one of the successful runs:-

You could always increase the size of the java stack as I did here. There are some instructions on how to do it at the processing discourse (alternative implementations) written by Jeremy Ashkenas:-
.... you can try increasing the java stack size. Create a "data" folder next to all the sketches and the library, and add a "java_args.txt" file in there that reads "-Xss8M".... that should do it, it worked for me.
No comments:
Post a Comment