// ====================================================================== // DESCRIÇÃO DA CENA #include "colors.inc" #include "metals.inc" camera { location <0, 1, -10> look_at 0 angle 35 } 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 } }