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

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // By Alexander Enzmann
  4.  
  5. /* sample quartic scene file written by Alexander Enzmann */
  6.  
  7. #include "shapes.inc"
  8. #include "colors.inc"
  9. #include "textures.inc"
  10.  
  11. /* Piriform - looks a bit like a Hershey's Kiss along the x axis...*/
  12. object {
  13.    quartic {
  14.       < 4.0   0.0   0.0   -4.0  0.0   0.0   0.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   1.0   0.0   0.0   0.0  0.0
  17.       0.0   0.0   1.0    0.0  0.0 >
  18.    }
  19.    bounded_by {
  20.       sphere { <0 0 0> 2 }
  21.    }
  22.    texture {
  23.       color red 0.7 green 0.0 blue 0.0
  24.       phong 1.0
  25.       phong_size 20
  26.       ambient 0.2
  27.       diffuse 0.8
  28.    }
  29.    translate <0 0.5 2>
  30. }
  31.  
  32. /* Put down checkered floor */
  33. object {
  34.    plane { <0.0 1.0 0.0> -10.0 }
  35.    texture {
  36.       checker
  37.       colour red 0.137255 green 0.137255 blue 0.556863
  38.       colour red 0.184314 green 0.184314 blue 0.309804
  39.       scale < 20.0 20.0 20.0 >
  40.       ambient 0.8
  41.       diffuse 0.2
  42.    }
  43. }
  44.  
  45. camera {
  46.    location  <0.0  2.0 -2.0>
  47.    up        <0.0  1.0  0.0>
  48.    right     <1.33 0.0  0.0>
  49.    look_at   <0.0  0.0  1.0>
  50. }
  51.  
  52. object {
  53.    light_source { <200 30 -300>
  54.       colour White
  55.    }
  56. }
  57.  
  58. object {
  59.    light_source { <-200 30 -300>
  60.       colour White
  61.    }
  62. }
  63.