背景の描画

 平面に色を付けて、背景として描画します。
 //**********************************************************************************
  plane { y, 1
   pigment { bozo
          color_map { [ 0.0 rgb < 0.8, 0.0, 0.2 > ]
                  [ 0.4 rgb < 0.4, 0.2, 0.4 > ]
                  [ 0.6 rgb < 0.0, 0.0, 0.2 > ]
                  [ 1.0 rgb < 0.0, 0.5, 0.0 > ] } scale 6 rotate 30*y }
  translate -100*y }
 //**********************************************************************************