Beispiel #1
0
 public bool Equals(LocationRect value)
 {
     return(this == value);
 }
 private static bool IsCrossingMeridian180(LocationRect boundary)
 {
     return(boundary.East < boundary.West);
 }
Beispiel #3
0
 public LocationRect(LocationRect rect)
 {
     this.Center     = new Position(rect.Center.Latitude, rect.Center.Longitude);
     this.halfHeight = rect.halfHeight;
     this.halfWidth  = rect.halfWidth;
 }