海の描画

 海を描画します。
 //**********************************************************************************
  plane { y, -0.5
   pigment { granite
         color_map { [ 0.0 rgb <0.2, 0.75, 0.75> ]
                  [ 0.6 rgb < 0, 0.35, 0.85> ]
                  [ 1.0 rgb <0.2, 0.40, 0.50> ] }
         turbulence <0.3, 0, 0.2>
         rotate y*90 scale <1, 1, 0.2> scale <0.4, 1, 0.4> }
   finish { diffuse 0.7 reflection 0.1 phong 0.2 }
   normal { ripples 0.3 frequency 3 translate z*100 }
  }
 //**********************************************************************************