Example #1
0
 /// <summary>
 /// Retrieve the wind speed at the given region coordinate.  This
 /// implimentation ignores Z.
 /// </summary>
 /// <param name="x">0...255</param>
 /// <param name="y">0...255</param>
 public Vector3 WindSpeed(int x, int y, int z)
 {
     if (m_activeWindPlugin != null)
     {
         return(m_activeWindPlugin.WindSpeed(x, y, z));
     }
     else
     {
         return(new Vector3(0.0f, 0.0f, 0.0f));
     }
 }