home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / utility / dos / plant0 / plant.pov < prev    next >
Encoding:
Text File  |  1993-09-29  |  465 b   |  32 lines

  1. // Persistence of Vision Raytracer
  2. // Shape Test file
  3.  
  4. #include "colors.inc"
  5.  
  6. camera {
  7.    location <0.0 12 -20 >
  8.    look_at <0 8 0>
  9. }
  10.  
  11. object {       
  12.    light_source { <40 100 -100> 
  13.       color White
  14.    }
  15. }
  16.  
  17. #include "plant.inc"
  18.  composite{
  19.   plant 
  20.   // scale <0 0 0>
  21.   // rotate <0.0 0.0 0.0>
  22. }
  23.  
  24. object { plane { <0.0 1.0 0.0> 0.0 }
  25.    texture {
  26.       color red 1 green 0.66 blue 0.2
  27.       ambient 0.3
  28.       diffuse 0.7
  29.    }
  30. }  
  31.  
  32.