home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / utility / dos / frc2pv / f2pscn0.pov < prev    next >
Encoding:
Text File  |  1994-01-04  |  523 b   |  23 lines

  1. //
  2. //       filename: F2PSCN0.POV
  3. //
  4. //       Basic 2-D Mandelbrot producing identical image as in Fractint.
  5. //         ( depending on options and accuracy of color map )
  6. //
  7. //       by David Grossman 
  8. //
  9.  
  10. #include "frct2pov.inc"
  11.  
  12. #declare zpos = 50
  13.  
  14. camera   {  location < 0,0,zpos >
  15.             direction < 0,0, 4/3 * .5 * zpos >
  16.             up < 0,1,0 >
  17.             right < -4/3,0,0 >
  18.             look_at < 0,0,0 >
  19.          }
  20.  
  21. object   {  plane { z,0 } texture { frct2pov finish { ambient 1 } } }
  22.  
  23.