Lines Matching refs:y
23 readonly y: number,
40 this.y <= point.y &&
41 point.y <= this.y + this.h
48 const maxTop = Math.max(this.y, other.y);
49 const minBottom = Math.min(this.y + this.h, other.y + other.h);
58 this.y <= other.y &&
60 this.y + this.h >= other.y + other.h
68 this.y <= other.y + other.h &&
69 other.y <= this.y + this.h
71 let [x, y, w, h] = [this.x, this.y, this.w, this.h];
76 if (this.y < other.y) {
77 y = other.y;
82 if (this.y + this.h > other.y + other.h) {
86 return !new Rect(x, y, w, h).isEmpty();
93 const [x, y, w, h] = [this.x, this.y, this.w, this.h]; constant
95 x === -1 || y === -1 || x + w === -1 || y + h === -1;