fractal
글쓴이
조용식
쓴날
2000-04-21 08:56
본수
7779

builtin:
type = 1
default:
title = "Built-in fast Mandelbrot"
center = (-0.5, 0)
param start
caption = "Starting point"
default = (0,0)
hint = "Perturbation. Use (0,0) for the standard Mandelbrot set."
endparam
param bailout
caption = "Bailout value"
default = 4.0
min = 1.0
hint = "Defines how soon an orbit bails out, i.e. doesn't belong \
to the Mandelbrot set anymore."
endparam
switch:
type = "FastJulia"
seed = #pixel
bailout = bailout
}
FastJulia(ORIGIN) {
builtin:
type = 2
default:
title = "Built-in fast Julia"
param seed
caption = "Julia seed"
default = (-1.25, 0)
hint = "Use this to create many different Julia sets. You can \
also set this value using the Switch feature."
endparam
param bailout
caption = "Bailout value"
default = 4.0
min = 1.0
hint = "Defines how soon an orbit bails out, i.e. doesn't belong \
to the Mandelbrot set anymore."
endparam
switch:
type = "FastMandel"
bailout = bailout
}
Mandelbrot {
; Generic Mandelbrot set
init:
z = @start
loop:
z = z^@power + #pixel
bailout:
|z| <= @bailout
default:
title = "Mandelbrot"
center = (-0.5, 0)
param start
caption = "Starting point"
default = (0,0)
hint = "Perturbation. Use (0,0) for the standard Mandelbrot set."
endparam
param power
caption = "Power"
default = (2,0)
hint = "This defines the power of the Mandelbrot set. Use (2,0) \
for the standard Mandelbrot set."
endparam
param bailout
caption = "Bailout value"
default = 4.0
min = 1.0
hint = "Defines how soon an orbit bails out, i.e. doesn't belong \
to the Mandelbrot set anymore."
endparam
switch:
type = "Julia"
seed = #pixel
power = power
bailout = bailout
}
Julia {
; Generic Julia set
init:
z = #pixel
loop:
z = z^@power + @seed
bailout:
|z| <= @bailout
default:
title = "Julia"
param seed
caption = "Julia seed"
default = (-1.25, 0)
hint = "Use this to create many different Julia sets. You can \
also set this value using the Switch feature."
endparam
param power
caption = "Power"
default = (2,0)
hint = "This defines the power of the Julia set. Use (2,0) \
for the standard Julia set."
endparam
param bailout
caption = "Bailout value"
default = 4.0
min = 1.0
hint = "Defines how soon an orbit bails out, i.e. doesn't belong \
to the Mandelbrot set anymore."
endparam
switch:
type = "Mandelbrot"
power = power
bailout = bailout
}