home *** CD-ROM | disk | FTP | other *** search
-
- Mandelbrot {; Mark Peterson
- ; Classical fractal
- z = Pixel:
- z = z^2 + Pixel
- abs(z) <= 4
- }
-
- Wineglass {; Pieter Branderhorst
- c = pixel, z=pixel:
- z = z * z + c
- c = (1+flip(imag(c))) * real(c) / 2 + z
- |z| <= 4
- }
-
- LeeMandel2 {; Kevin Lee
- z=Pixel:
- c=sqr(pixel)/z, c=z+c, z=sqr(c*pixel)
- |z|<4
- }
-
- Richard1 (XYAXIS) {; Jm Collard-Richard
- z = pixel:
- sq=z*z, z=(sq*sin(sq)+sq)+pixel
- |z|<=50
- }
-
- contest4 {; Kerry Mitchell
- ; slightly optimized version of Contest formula
- z=p1, c=pixel:
- z2=sqr(z), z=z*z2+c*(1+z-z2), |z| <= 4
- }
-
-