Contains() public method

public Contains ( WGS84Point point ) : bool
point WGS84Point
return bool
Ejemplo n.º 1
0
 /// <summary>
 /// find out if the given point lies within this hashes bounding box.<br>
 /// <i>Note: this operation checks the bounding boxes coordinates, i.e. does
 /// not use the <seealso cref="GeoHash"/>s special abilities.s</i>
 /// </summary>
 public bool Contains(WGS84Point point)
 {
     return(m_boundingBox.Contains(point));
 }