#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 <= 3) object { double_cone translate <-2+Counter,0,0> } #declare Counter = Counter + 1; #end //place the camera 2 units back camera { location <0,0,-2> 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 }