public bool Intersects(Recti other) { return(!(other.Left > Right || other.Right < Left || other.Top > Bottom || other.Bottom < Top)); }
static Recti() { empty = new Recti(0, 0, 0, 0); }