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

  1. // Persistence Of Vision raytracer version 1.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 <1.33333 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. object {
  30.    plane { <0.0 1.0 0.0> 17.0 }
  31.    texture {
  32.       checker
  33.       colour red 1.0 blue 1.0 green 1.0
  34.       colour red 0.1 green 0.6 blue 0.1
  35.       scale < 20.0 20.0 20.0 >
  36.       reflection 0.5
  37.       ambient 0.1
  38.       diffuse 0.8
  39.    }
  40.    colour red 1.0 green 1.0 blue 1.0
  41. }
  42.  
  43. object {
  44.    union { Merry }
  45.    texture {
  46.       color red 1.0
  47.       ambient 0.1
  48.       diffuse 0.9
  49.    }
  50. }
  51.  
  52. object {
  53.    light_source { <200.0  120.99  -330.0>
  54.       colour White
  55.    }
  56. }
  57.  
  58.