public bool Equals(LatLngQuad other) { return(TopLeft.Equals(other.TopLeft) && TopRight.Equals(other.TopRight) && BottomLeft.Equals(other.BottomLeft) && BottomRight.Equals(other.BottomRight)); }
public bool Equals(Obj16Tile other) { return (TopLeft.Equals(other.TopLeft) && TopRight.Equals(other.TopRight) && BottomLeft.Equals(other.BottomLeft) && BottomRight.Equals(other.BottomRight)); }
public bool Equals(FourCorners <TValue> other) { if (this == other) { return(true); } if (other == null) { return(false); } return(BottomLeft.Equals(other.BottomLeft) && BottomRight.Equals(other.BottomRight) && TopLeft.Equals(other.TopLeft) && TopRight.Equals(other.TopRight)); }
public bool Equals(GridSegment other) { return(TopLeft.Equals(other.TopLeft) && TopRight.Equals(other.TopRight) && BottomLeft.Equals(other.BottomLeft) && BottomRight.Equals(other.BottomRight)); }
bool Equals(CornerRadius other) { return(TopLeft.Equals(other.TopLeft) && TopRight.Equals(other.TopRight) && BottomRight.Equals(other.BottomRight) && BottomLeft.Equals(other.BottomLeft)); }