Exemplo n.º 1
0
 /// <inheritdoc />
 public bool Equals(GeoBoundingBox other)
 {
     return(West.Equals(other.West) &&
            South.Equals(other.South) &&
            East.Equals(other.East) &&
            North.Equals(other.North) &&
            Nullable.Equals(MinAltitude, other.MinAltitude) &&
            Nullable.Equals(MaxAltitude, other.MaxAltitude));
 }
Exemplo n.º 2
0
 public bool Equals(Bbox other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(North.Equals(other.North) &&
            South.Equals(other.South) &&
            East.Equals(other.East) &&
            West.Equals(other.West));
 }