Lines Matching refs:x2
282 drawSmallMap(nodes, x1, x2, y1, y2) { argument
283 if (x1 === x2 || y2 === y1) {
289 let sw = w / (x2 - x1);
451 let x2 = -9999;
460 if (n.pos.x + n.nameWidth > x2)
461 x2 = n.pos.x + n.nameWidth;
469 x2 = Math.max(mmx1[1] - this.offx_, x2) + Scr.logicw / 3;
474 x2: x2, property
478 let scrollW = x2 - x1;
495 this.drawSmallMap(nodes, x1, x2, y1, y2);
564 let x2 = n2.pos.x + n2.nameWidth - 5 + offx - l.inNum * 5;
577 x2 += this.drapSelect_.dx;
601 ls.push([x1, y1 + n1.outh[l.outNum], x2, y1 + n1.outh[l.outNum], c, lw]);
602 ls.push([x2, y1 + n1.outh[l.outNum], x2, y2, c, lw]);
611 ls.push([lx, y2 - ly, x2, y2 - ly, c, lw]);
612 ls.push([x2, y2 - ly, x2, y2, c, lw]);
625 drawLine(x1, y1, x2, y2, c, lw = 1) { argument
626 if (x1 === x2) {
636 if (x1 > x2) {
637 [x1, x2] = [x2, x1];
639 X2DFast.px2f.fillRect(x1, y1, x2 - x1, lw, c);
640 if (XTools.InRect(XTools.MOUSE_POS.x, XTools.MOUSE_POS.y, x1, y1 - 1, x2 - x1, lw + 2)) {
672 …let [x1, y1, x2, y2] = [this.dragScoll.x1, this.dragScoll.y1, this.dragScoll.x2, this.dragScoll.y2…
673 if (x1 === x2 || y1 === y2) {
676 let sw = w / (x2 - x1);