空の描画

 空を描画します。
 //**********************************************************************************
  sky_sphere {
   pigment { gradient y
       color_map { [ 0.0 rgb < 0.2, 0.4, 1.0 > ]
            [ 0.8 rgb < 0, 0.2, 0.8 > ]
            [ 1.0 rgb < 1, 0.8, 0.2 > ] } rotate < 90, 5, 0> }
   pigment { bozo
       color_map { [ 0.0 rgb <0.85, 0.65, 0.65 > ]
            [ 0.1 rgb <0.75, 0.55, 0.55 > ]
            [ 1.0 rgbt < 1, 1, 1, 1 > ] }
       turbulence 0.9
       scale < 1, 0.008, 0.025 > rotate < 0, 30, 5 > translate < -6, 0, 0 > }
  }
 //**********************************************************************************