// Last edited on 2005-01-05 17:42:54 by stolfi // Processed by remove-cam-lights background{ color rgb < 0.75, 0.80, 0.85 > } #declare raio = 3.000; #declare tinta_A = texture { pigment { color rgb < 0.00, 0.00, 1.00 > } finish { diffuse 0.8 specular 0.4 roughness 0.005 ambient 0.1 } } #declare tinta_B = texture { pigment { color rgb < 0.50, 0.50, 0.50 > } finish { diffuse 0.8 specular 0.4 roughness 0.005 ambient 0.1 } } #declare corpo = box { < 0.00, 0.00, 0.00 >, < 10.00, 15.00, 5.00 > texture { tinta_B } } #declare ponta_esferica = sphere { < 5.00, 15.00, 5.00 >, 5.00 texture { tinta_A } } #declare offset_ponta_esferica = box { < -1.00, 9.00, 5.00 > < 11.00, 21.00, 11.00> texture { tinta_A } } #declare offset2_ponta_esferica = box { < -1.00, 9.00, 0.00 > < 11.00, 15.00, 11.00> texture { tinta_A } } #declare pes = box { < 0.00, 0.00, 0.00 >, < 10.00, 10.00, 1.00 > texture { tinta_A } translate < 2.50, 2.50, -6.00> } #declare suporte = box { < 0.00, 0.00, 0.00 >, < 5.00, 5.00, 6.00> texture { tinta_A } translate < 5.00, 5.00, -6.00> } #declare ponta_triangular = box { < 0.00, 0.00, 0.00 > < 10.00, 30.00, 5.00 > texture { tinta_A } } #declare offset_ponta_triangular = box { < -1.00, -1.00, -1.00 > < 11.00, 31.00, 21.00> texture { tinta_A } translate -20.00*z rotate 30*x } union { object { corpo } difference { object { ponta_triangular } object { offset_ponta_triangular } rotate 180*z translate 10*x translate -5*z rotate -60*x translate 5*z } difference { object { ponta_esferica } object { offset_ponta_esferica } object { offset2_ponta_esferica } translate < -5.00, -15.00, -5.00> rotate 30*x translate < 5.00, 15.00, 5.00> } union { object { suporte } object { pes } translate -10*x rotate -30*y translate 10*x } } #include "camlight.inc" camlight(<0,0,0>,<40.00,40.00,20.00>,0.80,z,1.0)