Lines Matching refs:dy

2688 				var dy = Math.round(this.currentTranslate.y * 100) / 100;
2690 'translate(' + dx + ',' + dy + ')');
3941 var dy = t.y * s;
3946 dy = parentState.y;
3957 var rect = (!ignoreCellAt) ? new mxRectangle(dx + pt.x * s, dy + pt.y * s).grow(40 * s) : null;
4147 createTarget(dx + pt.x * s, dy + pt.y * s, execute);
4378 var dy = Math.round(geo.height - state.height / this.view.scale);
4380 if (dy != 0 || dx != 0)
4390 this.moveSiblings(state, parent, dx, dy);
4396 this.resizeParentStacks(parent, layout, dx, dy);
4419 Graph.prototype.moveSiblings = function(state, parent, dx, dy) argument
4437 Math.round(dy * Math.max(0, Math.min(1, (tmp.y - state.y) / state.height))));
4452 Graph.prototype.resizeParentStacks = function(parent, layout, dx, dy) argument
4478 pgeo.height += dy + Math.min(0, pstate.height / this.view.scale - pgeo.height);
5783 Graph.prototype.createParent = function(parent, child, childCount, dx, dy) argument
5795 geo.y += i * dy;
5949 Graph.prototype.setTableRowHeight = function(row, dy, extend) argument
5963 rgeo.height += dy;
5982 geo.y += dy;
5983 geo.height -= dy;
6004 tgeo.height += dy;
6605 var dy = pt.y - p0.y;
6606 var temp = {distSq: dx * dx + dy * dy, x: pt.x, y: pt.y};
6705 var dy = next.y / this.scale - pt.y;
6706 var dist = dx * dx + dy * dy;
6727 var dy = last.y - pt.y;
6728 var dist = dx * dx + dy * dy;
7524 Graph.prototype.importGraphModel = function(node, dx, dy, crop) argument
7527 dy = (dy != null) ? dy : 0;
7559 dx, dy, false, this.getDefaultParent());
7571 [layers[i]], dx, dy, false, this.model.getRoot())[0]);
7591 dy = this.snap(dy);
7598 this.moveCells(cells, dx - bounds.x, dy - bounds.y);
7706 Graph.prototype.splitEdge = function(edge, cells, newEdge, dx, dy, x, y, parent) argument
7723 var newEdge = graphSplitEdge.apply(this, [edge, cells, newEdge, dx, dy, x, y, parent]);
7899 Graph.prototype.moveCells = function(cells, dx, dy, clone, target, evt, mapping) argument
8956 var dy = this.container.scrollTop / this.view.scale - this.view.translate.y;
8963 dy = Math.max(dy, layout.y * page.height);
8966 return new mxPoint(this.snap(dx + gs), this.snap(dy + gs));
9182 var dy = Math.abs(this.startY - me.getGraphY());
9184 if (dx > tol || dy > tol)
12022 var dy = 0;
12031 this.shape.stroke = (dy == 0) ? mxConstants.NONE : sel.stroke;
12035 dy * this.graph.view.scale;
12043 dy = Math.max(Graph.minTableRowHeight - bounds.height,
12049 if (dy != 0)
12051 graph.setTableRowHeight(this.state.cell, dy,
12060 dy = 0;
12065 dy = 0;
12594 var dy = null;
12601 dy = (this.currentY - y0) / this.graph.view.scale;
12606 dy = this.graph.snap(dy);
12615 if (Math.abs(dy) < this.graph.tolerance)
12617 dy = 0;
12644 geo.translate(dx, dy);
12678 var dy = this.first.y - y;
12681 if (this.div != null || Math.abs(dx) > tol || Math.abs(dy) > tol)