home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / maj / 2328 / setup2.pov < prev    next >
Text File  |  1993-11-22  |  592b  |  30 lines

  1. // --- L-System Parser/Mutator --- Lj Lapre --- 
  2. // use with output.inc generated by lparser -bc
  3. // and change direction/zoom scale to get correct view
  4.  
  5. #include "colors.inc"
  6. #include "shapes.inc"
  7. #include "textures.inc"
  8.  
  9. // Setup camera
  10.  
  11. camera {
  12.     location  <200, 180, 250>
  13.     direction <0, 0, 2.0>
  14.     look_at   <0, 0, 0>
  15. }
  16.  
  17. // Setup light sources
  18.  
  19. object { light_source { <200, 180, 250> color White } }
  20.  
  21. object {  
  22.         blob {
  23.         threshold 0.5
  24. #include "output.inc"
  25.         sturm
  26.         }
  27.         finish { ambient 0.3 diffuse 0.7 phong 1 }
  28.     pigment { color red 1 }
  29. }
  30.