// Last edited on 2003-12-14 20:22:51 by stolfi // ====================================================================== // DESCRIÇÃO DA CENA #include "colors.inc" #include "metals.inc" #declare ctr = 0; #declare camDir = <0, 1, -10>; camera { location ctr + 1.00*camDir right 0.80*x up 0.80*y sky y look_at ctr } light_source { <500,500,-1000> White } sky_sphere { pigment { gradient y color_map { [ 0.5 color CornflowerBlue ] [ 1.0 color MidnightBlue ] } scale 2 translate -1 } } plane { y,0 pigment { White } translate <0,-0.8,0> finish { F_MetalC } // finish { // phong 0.5 // phong_size 9 // metallic F_MetalE // // } } text { ttf "timrom.ttf" "L. I. V." 1, 0 pigment { Red } translate <-1,0.5,0> } #declare White = rgb <1,1,1>; #declare LightGray = White*0.8; difference { sphere { <0.2,0.8,0>, 1.8 pigment { color LightGray transmit 0.5 } } box { <0, 0, 0>, < 2.6, 1.5, 6> translate <-1,0,0> } pigment { LightGray transmit 0.9 } }