¾Õ¼±.»çÀÌ.¹þ.±×¸²


2000/04/21(08:56) from 203.241.163.36
ÀÛ¼ºÀÚ : Á¶¿ë½Ä (dabang333@dabang333.com) Á¶È¸¼ö : 6493 , ÁÙ¼ö : 121
fractal
³»·Á¹Þ±â : fractal2.jpg (338 Kbytes)

fractal2.jpg
FastMandel(XAXIS_NOPARM) {
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
}

Modify Delete Post Reply Backward Forward List