|
Mandelbrot {
; The classic Mandelbrot set
init:
z = #zwpixel
loop:
x = x + sqr(z)
z = z^x + #pixel
bailout:
@bailfunc(z) < @bailout
default:
float param bailout
default = 4.0
endparam
float func bailfunc
default = cmag
endfunc
}
Please, sign in to add your comment.