M201608211034{
;
; Generic Julia set.
;
init:
c =3*#pixel
z=-2.735865250I
loop:
z0=z
z =(1-z^2)/(z-z^2*tan(z)) +c
z =(1-z^2)/(z-z^2*tan(z)) +c
bailout:
|z|<=12&&|z-z0|>=0.00003
default:
title = " M201608211034"
helpfile = "Uf*.chm"
helptopic = "Html\formulas\standard\julia.html"
$IFDEF VER50
rating = recommended
$ENDIF
param bailout
caption = "Bailout value"
default = 0.00001
min = 0.0
$IFDEF VER40
exponential = true
$ENDIF
hint = "This parameter defines how soon an orbit bails out while \
iterating. Larger values give smoother outlines; values around 4 \
give more interesting shapes around the set. Values less than 4 \
will distort the fractal."
endparam
switch:
type = "Mandelbrot"
power = power
bailout = bailout
} |