draw a julia fractal with the parameter c= creal+i*cim, according
to the formula x<-x^2+c.
use fractaljulia( , ,-2,-2,4,4) for the entire fractal.
creal is the real part of the parameter c.
cim is the imaginary part of the parameter c.
sx is the horizontal size of the result.
sy is the vertical size of the result.
startx defines the visible part of the fractal (upper left corner).
starty defines the visible part of the fractal (upper left corner).
width is the width of the visible part of the fractal.
height is the height of the visible part of the fractal.
returns a new Image 24 containing the fractal
draw a mandelbrot fractal.
use fractalmandelbrot( , ,-2,-2,4,4) for the entire fractal.
sx is the horizontal size of the result.
sy is the vertical size of the result.
startx defines the visible part of the fractal (upper left corner).
starty defines the visible part of the fractal (upper left corner).
width is the width of the visible part of the fractal.
height is the height of the visible part of the fractal.
returns a new Image 24 containing the fractal