home *** CD-ROM | disk | FTP | other *** search
- //
- // filename: F2PSCN0.POV
- //
- // Basic 2-D Mandelbrot producing identical image as in Fractint.
- // ( depending on options and accuracy of color map )
- //
- // by David Grossman
- //
-
- #include "frct2pov.inc"
-
- #declare zpos = 50
-
- camera { location < 0,0,zpos >
- direction < 0,0, 4/3 * .5 * zpos >
- up < 0,1,0 >
- right < -4/3,0,0 >
- look_at < 0,0,0 >
- }
-
- object { plane { z,0 } texture { frct2pov finish { ambient 1 } } }
-
-