// Last edited on DATE TIME by USER // Processed by remove-cam-lights #macro quadro(tt) background{ color rgb < 0.75, 0.80, 0.85 > } #declare raio = 2.000; #declare ctt = cos(2*pi*tt); #declare stt = sin(2*pi*tt); #declare tinta_A = texture { pigment { color rgb < 1, 0.50, 0.0 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_B = texture { pigment { color rgb < 0.95, 0.75, 0.70 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_C = texture { pigment { color rgb < 0.2, 0.5, 1 > } } #declare tx_letra = texture{ pigment{ color rgb < 0.89, 0.99, 0.6 > } finish{ diffuse 0.8 ambient 0.1 specular 0.5 roughness 0.005 } } #declare bola = sphere { < 0, 0.00, 0.00 >, 1 texture { tinta_A } } #declare bola2 = cylinder { < -3, 0.00, 0.4 >, < 3, 0.00, 0.4 >, 0.6 texture { tinta_B } } #declare coneCima = cone { < 0, 0.00, 0.4 >, 0, < 0, 0.00, 1.5 >, 1.2 texture { tinta_C } } #declare asaEsquerda = cone { < 0, -1.00, 0 >, 0.3, < 0, -4.00, ctt*3 >, 0.0 texture { tinta_B } } #declare asaDireita = cone { < 0, 1.00, 0.0 >, 0.3, < 0, 4.00, ctt*3 >, 0.0 texture { tinta_B } } #declare textoLogo = text { ttf "verdana.ttf" "Vulca" 0.3, 0 finish { reflection .25 specular 1 } rotate <90,0,90> scale 0.7 translate <0.6,0.6,-0.6> texture{ tinta_C } } #declare textoLogo2 = text { ttf "verdana.ttf" "Net" 0.3, 0 finish { reflection .25 specular 1 } rotate <90,0,90> scale 0.7 translate <0.6,2.5,-0.6> texture{ tinta_A } } #include "eixos.inc" union { difference { object { bola } object { bola2 } } object { coneCima } object { asaEsquerda } object { asaDireita } object { textoLogo } object { textoLogo2 } object{ eixos(4) } rotate 360*tt*z translate -1.5*ctt*y } #end quadro(clock) // Original camera parameters: // #local cam_ctr = <0,0,0> // #local cam_loc = <8.00,4.00,2.00> // #local cam_vec = <8.00,4.00,2.00> // #local cam_sky = z #include "camlight.inc" camlight(<0,0,0>,5.041,<10,10,10>,9.165,z,1.2)