// Last edited on DATE TIME by USER // Processed by remove-cam-lights #include "colors.inc" global_settings { assumed_gamma 1.0 } sky_sphere { pigment { gradient y color_map { [0.0 rgb <0.6,0.7,1.0>] [0.7 rgb <0.0,0.1,0.8>] } } } #declare amarelo = texture { pigment { color rgb < 1.00, 1.00, 0.00 > } finish { diffuse 0.8 specular 0.2 roughness 0.005 ambient 0.1 } } #declare azulclaro = texture { pigment { color rgb < 0.00, 1.00, 1.00 > } finish { diffuse 0.8 specular 0.2 roughness 0.005 ambient 0.1 } } #declare pizza= cylinder{<0,0,0>,<0,0,0.1>,10 } #macro pedaco(ang_ini,ang_fim,cor) difference{ difference{ object{pizza #if(cor=0) pigment { Blue } #else #if(cor=1) pigment { Green } #else #if(cor=2) pigment { Red } #else pigment { Yellow } #end #end #end } plane{x,0 inverse rotate ang_ini*z } } plane{y,0 rotate -90*z rotate ang_fim*z } } #end plane { y, -15 pigment { color rgb <0.7,0.5,0.3> } } #include "dados.inc" #include "camlight.inc" camlight(<0,0,0>,<0,0,-70.00>,1.00,y,1.0)