M201608201639{
;
; Generic Julia set.
;
init:
c =3*#pixel
z=-1.663892103
loop:
z0=z
z =(1-z^2)/(z-z^2*sin(z)) +c
z =(1-z^2)/(z-z^2*sin(z)) +c
bailout:
|z|<=23&&|z-z0|>=0.00001
default:
title = " M201608201639"
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
} |