9)受骨の形状

 傘の受骨の形状を、cylinder を用いてCSGの結合により生成します。
 //**********************************************************************************
  #local Stretcher = union {
   cylinder { 0.10*z, -0.03*z, Wr*1.1 }
   cylinder { 0.01*z, -0.01*z, Wr*1.2 }
   #local N=0; #while( N < Nmax )
   cylinder { 0*x, 0.49*x, Wr/5 rotate <0,15,N*360/Nmax> }
   #local N=N+1; #end
   pigment { color rgb <1,0,0> } translate -0.75*z }
 //**********************************************************************************