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

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // Sample qaurtic file 
  4. // by Alexander Enzmann
  5.  
  6. #include "shapes.inc"
  7. #include "colors.inc"
  8. #include "textures.inc"
  9. #include "shapesq.inc"
  10.  
  11. object {
  12.    quartic { Piriform sturm }
  13.    rotate <0 0 -90>
  14.    translate <0 0.5 0>
  15.    scale <2 10 2>
  16.    texture {
  17.       color SteelBlue
  18.       phong 1.0
  19.       phong_size 20
  20.       ambient 0.2
  21.       diffuse 0.8
  22.    }
  23. }
  24.  
  25. camera {
  26.    location  <0.0  0.0 -12.0>
  27.    up        <0.0  1.0  0.0>
  28.    right     <1.33 0.0  0.0>
  29.    look_at   <0.0  0.0  0.0>
  30. }
  31.  
  32. object {
  33.    light_source { <200 30 -500>
  34.       colour White
  35.    }
  36. }
  37.