// Last edited on DATE TIME by USER // Processed by remove-cam-lights background{ color rgb < 0.4, 0.4, 0.4 > } #declare Yellow = rgb<255, 255, 0>; #declare Black = rgb < 0.4, 0.4, 0.4 >; #declare tx_plastico = texture{ pigment{ color rgb < 0.10, 0.80, 1.00 > } finish{ diffuse 0.8 ambient 0.1 specular 0.5 roughness 0.005 } } #include "eixos.inc" #declare prisma = difference{ object{ prism { 0, 7, 5, <0,0>, <7,0>, <7,7>, <3.5,11.5>, <0,7> //outer rim } texture{tx_plastico} } object{ prism { -0.1, 7.1, 5, <0.5,0.5>, <6.5,0.5>, <6.5,7>, <3.5,11>, <0.5,7> //inner rim } texture{tx_plastico} } rotate<90,0,90> } #declare texto = text{ ttf "arial.ttf" "S" 5, 1 translate <-1, -1, 1> rotate<0,90,90> scale 5.0 } union{ difference{ object{prisma} object{texto} } translate<-5, -3, 0> rotate<0,0,90> } object{light_source { <1, 1, 3>, color rgb<1,1,1> } rotate<0,90,0> } object{ box{ <0,0,0>, <2,15,15> texture{tx_plastico} } translate<-15,-10,0> } #include "camlight.inc" #declare centro_cena = < 0.00, 0.00, 6.00 >; #declare raio_cena = 20.0; #declare dir_camera = < 5.00, 7.00, 4.00 >; #declare dist_camera = 5*raio_cena; #declare intens_luz = 0; camlight(centro_cena, raio_cena, dir_camera, dist_camera , z, intens_luz)