home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / graphics / ftpovscn / 0 / witch.pov < prev   
Text File  |  1992-07-21  |  1KB  |  56 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // By Alexander Enzmann
  4. /* sample quartic scene file written by Alexander Enzmann */
  5.  
  6. #include "colors.inc"
  7. #include "shapes.inc"
  8. #include "textures.inc"
  9.  
  10. /* Witch of Agnesi */
  11. object {
  12.    intersection {
  13.       quartic {
  14.          < 0.0   0.0   0.0   0.0   0.0   0.0   1.0   0.0   0.0   0.0
  15.          0.0   0.0   0.0   0.0   0.0   0.0   0.0   0.0   0.0   0.0
  16.          0.0   0.0   0.0   0.0   0.0   0.0   0.0   1.0   0.0   0.04
  17.          0.0   0.0   0.0   0.0   0.04 >
  18.          texture {
  19.             color Red
  20.             specular 1.0
  21.             roughness 0.05
  22.             ambient 0.2
  23.             diffuse 0.8
  24.          }
  25.       }
  26.       sphere { <0 0 0> 1
  27.          texture {
  28.             color Clear
  29.          }
  30.       }
  31.    }
  32.    bounded_by {
  33.       sphere { <0 0 0> 1.5 }
  34.    }
  35.    rotate <30 0 180>
  36. }
  37.  
  38. camera {
  39.    location  <0.0  0.0 -3.0>
  40.    direction <0.0  0.0  1.0>
  41.    up        <0.0  1.0  0.0>
  42.    right     <1.33 0.0  0.0>
  43. }
  44.  
  45. object {
  46.    light_source { <200 30 -300>
  47.       colour White
  48.    }
  49. }
  50.  
  51. object {
  52.    light_source { <-200 30 -300>
  53.       colour White
  54.    }
  55. }
  56.