TileCook.Envelope.Equals C# (CSharp) Method

Equals() public method

public Equals ( Envelope other ) : bool
other Envelope
return bool
        public bool Equals(Envelope other)
        {
            if (this.Minx == other.Minx &&
                this.Miny == other.Miny &&
                this.Maxx == other.Maxx &&
                this.Maxy == other.Maxy)
            {
                return true;
            }
            return false;
        }