in 2019/harness/focusManager.js [95:104]
this.intersect = function(that) {
return this.inside(that.left, that.top) ||
this.inside(that.right, that.top) ||
this.inside(that.left, that.bottom) ||
this.inside(that.right, that.bottom) ||
that.inside(this.left, this.top) ||
that.inside(this.right, this.top) ||
that.inside(this.left, this.bottom) ||
that.inside(this.right, this.bottom);
};