Flower2.inc
// (c) Robert J Becraft, All Rights Reserved.
#declare Flower2=union{
sphere{<0,0,0> .01 scale <1,.25,1> texture{pigment{color Orange}}}
sphere{<0,0,0> .01 scale <1,.5,1> translate<0,-.005,0>
texture{pigment{color DarkGreen}}}
cone{<0,0,0> .01 <0,-.018,0> .0035 texture{pigment{color DarkGreen}}}
sphere{<0,-.018,0> .0035 texture{pigment{color DarkGreen}}}
#declare Count=1;
#while (Count<360)
#declare Y1=rand(S1)*-.0025;
#declare ZS=rand(S1)*1.5+2;
#declare XR=rand(S1)*-45-20;
cylinder{<0,0,0><0,.0001,0> .005 translate<0,Y1,.005>
scale <.75,1,ZS> rotate<XR,Count,0> texture{pigment{color AliceBlue}}}
#declare Count=Count+rand(S1)*25;
#end
}