home *** CD-ROM | disk | FTP | other *** search
/ POV-RAY - Reference Guide & Practical Examples / LE_POVRAY_Ejemplos.iso / ejem_3 / pr5 / pract5.pov < prev   
Encoding:
Text File  |  1995-09-26  |  1.0 KB  |  51 lines

  1. #include "colors.inc"           
  2. #include "textures.inc"         
  3.  
  4. #declare Cubo = box {<-1.0 -1.0 -1.0> <1.0 1.0 1.0> }
  5.  
  6. camera {
  7.    location <+0.75  1.5  -6>
  8.    direction <0.0 0.0  1.0>
  9.    up  <0.0  1.0  0.0>
  10.    right <1.33333 0.0 0.0>
  11.    look_at <0 0 -1>
  12. }
  13.  
  14. object { light_source {<65 20 -40>color White }}
  15.  
  16. object {
  17.    sphere { <0 0 0> 10000 }
  18.    texture {
  19.       Clouds 
  20.       scale <10000 10000 10000>
  21.    }
  22. }
  23.  
  24. object {  plane {< 0 1 0> -3 }
  25.    texture {
  26.       checker color White color Black
  27.       scale < 0.5 0.5 0.5>
  28.       rotate <0 0 45>
  29.       reflection 0.25
  30.    }
  31. }
  32.  
  33. object {  sphere {< 0 0 0> 1.7 }
  34.    texture {
  35.       Glass                         
  36.       color blue 0.90 alpha 0.85    
  37.       reflection 0.2 
  38.       phong 1 phong_size 250
  39.    }
  40. }
  41.  
  42. object {
  43.    difference {
  44.       box {Cubo scale <1.5 1.5 1.5> }
  45.       box {Cubo scale <1.6 1.3 1.3> }
  46.       box {Cubo scale <1.3 1.6 1.3> }
  47.       box {Cubo scale <1.3 1.3 1.6> }
  48.    }
  49.    texture {   Copper_Metal }
  50.    rotate <45 45 0>
  51. }