这是大家熟悉的N集:
Mandel {
init:
z=sqrt(1/6*(#pixel^2+1))
loop:
zold=z
z = z - (z^2-1)*(z^2-#pixel^2) /(4*z^3-2*(#pixel^2+1)*z)
bailout:
|z - zold| > @bailout
default:
title = "Nova (Mandelbrot)"
helpfile = "Uf*.chm"
helptopic = "Html\formulas\standard\nova.html"
$IFDEF VER50
rating = recommended
$ENDIF
maxiter = 1000
periodicity = 0
center = (0,0)
magn = 1.5
param bailout
caption = "Bailout"
default = 0.00001
$IFDEF VER40
exponential = true
$ENDIF
hint = "Bailout value; smaller values will cause more \
iterations to be done for each point."
endparam
switch:
type = "NovaJulia"
seed = #pixel
power = @power
bailout = @bailout
relax = @relax
}
|