Lines Matching refs:h
27 readonly h: number,
36 isClose(this.h, other.h)
45 point.y <= this.y + this.h
53 const minBottom = Math.min(this.y + this.h, other.y + other.h);
60 this.h > 0 &&
64 this.y + this.h >= other.y + other.h
72 this.y <= other.y + other.h &&
73 other.y <= this.y + this.h
75 let [x, y, w, h] = [this.x, this.y, this.w, this.h];
86 if (this.y + this.h > other.y + other.h) {
87 h = other.h;
90 return !new Rect(x, y, w, h).isEmpty();
97 const [x, y, w, h] = [this.x, this.y, this.w, this.h]; constant
99 x === -1 || y === -1 || x + w === -1 || y + h === -1;
100 const nullHeightOrWidth = w <= 0 || h <= 0;