Example #1
0
 public bool Contains(GeographicBoundingBox test)
 {
     return(test.West >= this.West && test.East <= this.East && test.South >= this.South && test.North < this.North);
 }
Example #2
0
 public bool IntersectsWith(GeographicBoundingBox test)
 {
     return(test.West < this.East && this.West < test.East && test.South < this.North && this.South < test.North);
 }