// Last edited on 2013-11-04 00:32:12 by stolfilocal // Processed by remove-cam-lights background{ color rgb < 0.500, 0.500, 0.750 > } #include "eixos.inc" #declare tx_plastico = texture{ pigment{ color rgb < 0.80, 0.10, 0 > } } #declare tx_fosca = texture{ pigment{ color rgb < 1.00, 0.80, 0.10 > } finish{ diffuse 0.9 ambient 0.1 } } #declare caixa = box{ < 0,0,0 >, <2,2,2>} #declare pino = cylinder{ < -1.00 , +1.00, 0 >, < +3.00, +1.00, 0 >, 0.75 texture{ tx_plastico } } #declare braco = cylinder{ < +1, 2.00, 1.00 >, < +1.00, 3.00, 1.00 >, 0.2 texture{ tx_fosca } } #declare tor = torus{0.5, 0.25 texture{ tx_fosca } } union{ //object{eixos(5)} object{braco } object{braco scale <1,3,1> rotate <90, 0, 0> translate <0, 4, -5>} object{braco scale <1,2,1> translate <0, -3, 3>} object{braco scale <1,0.4,1> rotate <90, 0, 0> translate <0, 2, 3>} object{braco translate <0,-3 , 0> } object{braco scale <1,2,1> rotate <90, 0, 0> translate <0, 0, -3>} object{braco scale <1,1.3,1> translate <0, -3.6, 2>} object{tor rotate <90, 0, 0> translate <1, 1, 3> } difference{ object{ caixa texture{ tx_plastico } interior { ior 1.01 } } object{ pino } } } #include "camlight.inc" #declare centro_cena = < 1.00, 1.00, 2.00 >; #declare raio_cena = 4.6; #declare dir_camera = < 14.00, 7.00, 4.00 >; #declare dist_camera = 200.0; #declare intens_luz = 1.00; camlight(centro_cena, raio_cena, dir_camera, dist_camera , z, intens_luz)