// Last edited on 2009-07-22 19:55:34 by stolfilocal // Processed by remove-cam-lights #include "colors.inc" #include "textures.inc" #include "shapes.inc" #include "metals.inc" #include "glass.inc" #include "woods.inc" background{ color rgb < 0.8, 0.8, 0.8 > } global_settings { max_trace_level 10 } plane{ <0,1,0>, 0 pigment { checker color rgb <0.8,0.8,0.8>, color rgb <0.9,0.9,0.9> rotate 17*y } finish{ diffuse 0.8 ambient 0.1} } #declare bola= merge{ sphere {<0.5,3,0> 1.5 texture { pigment { color Red filter 0.5} finish { diffuse 0.1 ambient 0.1 reflection 0.5 } } } interior {ior 1.5} } #declare pedestal= merge{ cylinder{<0.5,-1,0> <0.5,3,0> 1 texture { pigment { color Silver } finish { diffuse 1 reflection 2} } } } object {bola} object {pedestal} // Original camera parameters: // #local cam_ctr = (<0,0,0> sky <0,0,0>) // #local cam_vec = (<0,8,-6>-(<0,0,0> sky <0,0,0>)) // #local cam_sky = y #include "camlight.inc" camlight(<0,2,0>,<10,7,5>,8.0,y,1.0)