#include "colors.inc" //create a blue double cone #declare double_cone = lathe { linear_spline 3 <0,.75>,<.25,0>,<0,-.75> pigment { color Blue } } #declare Counter = 1; #while (Counter <= 12) object { double_cone translate <0,-.75,0> rotate <0,0,Counter*30> } #declare Counter = Counter + 1; #end //place the camera 3 units back camera { location <0,0,-3> look_at <0,0,0> } //place the light source ten units high, ten units back, and slightly to the right light_source { <1,10,-10> color White } //make the background color white background { color White }