home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR37 / ICON2POV.ZIP / ICON2POV.POV < prev    next >
Text File  |  1993-07-23  |  744b  |  45 lines

  1. // sample file to view an Icon2Pov generated file
  2.  
  3. #include"colors.inc"
  4. #include"textures.inc"
  5. #include"shapes.inc"
  6. #include"litening.inc"
  7.  
  8. camera {
  9.    location <25 12 -30>
  10.    up <0 1 0>
  11.    sky <0 1 0>
  12.    right     <1.33 0 0>
  13.    look_at   <16.0 0.0 -16.0>
  14. }
  15.  
  16. object {
  17.    light_source{ <10.0 10.0 -40.0> 
  18.    color White
  19.    }
  20. }
  21.  
  22. object {                //ground
  23.   plane{ <0.0 1.0 0.0> 0 }
  24.   texture {color Green}
  25. }
  26.  
  27. composite { 
  28.   IcontoPoV             //see .INC file
  29.   translate <0 4 0>
  30. }
  31.  
  32. object {                //sky
  33.  sphere { <0 0 0> 1 } 
  34.  texture { 
  35.    gradient <0 1 0> 
  36.    color_map {
  37.     [0 1 color White color Blue]
  38.    }
  39.    ambient 1 diffuse 0
  40.   } 
  41.  scale <10000 10000 10000> 
  42.   no_shadow
  43. }
  44.  
  45.