// Last edited on DATE TIME by USER // Processed by remove-cam-lights #include "colors.inc" #include "stones.inc" #include "woods.inc" #include "metals.inc" #include "golds.inc" background{ color rgb < 0.75, 0.80, 0.85 > } #declare plano = plane { z,0 texture { T_Stone20 } } #declare base_pizza = union { cylinder { <0,0,0>,<0,0,0.3>,10 texture { T_Gold_1A } } torus { 10,0.75 texture { T_Gold_1A } rotate 90*x } } #macro pedaco_pizza (angulo,cor) union { difference { cylinder { <0,0,0>,<0,0,0.2>,9 pigment { cor } } plane { x,0 pigment { cor } } plane { -x,0 pigment { cor } rotate angulo*z } } #if (angulo>=30) cylinder { <0,0,0.2>,<0,0,0.3>,1 texture { T_Wood20 } translate <5,0,0> rotate (angulo/2)*z } #end } #end #macro divisao_pizza (angulo) union { cylinder { <0,0,0>,<0,9,0>,0.05 pigment { DarkGreen } rotate angulo*z } } #end #declare texto = text { ttf "timrom.ttf" "PIZZA SABOR 'du -k'" 0.1, 0 pigment { Red } rotate 90*x } object { plano } union { object { base_pizza } #include "dados.inc" translate <0,0,2> } object { texto rotate 90*z translate <15,-5,2> } #include "camlight.inc" camlight(<0,0,0>,<30.00,0.00,14.00>,1.00,z,1.0)