home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / graphics / povscn20 / spline.pov < prev    next >
Text File  |  1993-09-27  |  1KB  |  50 lines

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // By Drew Wells
  4.  
  5. // Spline.pov  - This file requires spline.inc
  6.  
  7. // Drew Wells 1990 cis 73767,1244 
  8.  
  9. // This is a huge word "Merry" written in cursive over a reflective  
  10. // checkered plain. Normally i avoid using the cliched checkered plane {, 
  11. // but here it looks good with the huge, holiday "Merry". 
  12.  
  13.  
  14. #include "shapes.inc"
  15. #include "colors.inc"
  16. #include "textures.inc"
  17.  
  18. #include "spline.inc"
  19.  
  20. camera {
  21.    location <10.0, 25.0, -550.0>
  22.    direction <0.0, 0.0, 3.0>
  23.    up  <0.0, 1.0, 0.0>
  24.    right <4/3, 0.0, 0.0>
  25.    look_at <120.0, 45.0, 0.0>
  26. }
  27.  
  28. /* Put down the beloved famous raytrace green/yellow checkered floor */
  29. plane { y, 17.0
  30.    pigment {
  31.       checker colour red 1.0 blue 1.0 green 1.0
  32.               colour red 0.1 green 0.6 blue 0.1
  33.       quick_color red 1.0 green 1.0 blue 1.0
  34.       scale 20.0
  35.    }
  36.    finish {
  37.       reflection 0.5
  38.       ambient 0.1
  39.       diffuse 0.8
  40.    }
  41. }
  42.  
  43. object { Merry
  44.    pigment { color red 1.0 }
  45.    finish { ambient 0.1 diffuse 0.9 }
  46. }
  47.  
  48. light_source { <200.0, 120.99, -330.0> colour White }
  49.  
  50.