Lines Matching refs:dx

2687 				var dx = Math.round(this.currentTranslate.x * 100) / 100;
2690 'translate(' + dx + ',' + dy + ')');
3940 var dx = t.x * s;
3945 dx = parentState.x;
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);
4377 var dx = Math.round(geo.width - state.width / 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
4436 geo.translate(Math.round(dx * Math.max(0, Math.min(1, (tmp.x - state.x) / state.width))),
4452 Graph.prototype.resizeParentStacks = function(parent, layout, dx, dy) argument
4474 pgeo.width += dx + Math.min(0, pstate.width / this.view.scale - pgeo.width);
5783 Graph.prototype.createParent = function(parent, child, childCount, dx, dy) argument
5794 geo.x += i * dx;
6024 Graph.prototype.setTableColumnWidth = function(col, dx, extend) argument
6051 geo.width += dx;
6055 geo.alternateBounds.width += dx;
6070 geo.x += dx;
6074 geo.width -= dx;
6078 geo.alternateBounds.width -= dx;
6095 tgeo.width += dx;
6604 var dx = pt.x - p0.x;
6606 var temp = {distSq: dx * dx + dy * dy, x: pt.x, y: pt.y};
6704 var dx = next.x / this.scale - pt.x;
6706 var dist = dx * dx + dy * dy;
6726 var dx = last.x - pt.x;
6728 var dist = dx * dx + dy * dy;
7524 Graph.prototype.importGraphModel = function(node, dx, dy, crop) argument
7526 dx = (dx != null) ? dx : 0;
7559 dx, dy, false, this.getDefaultParent());
7571 [layers[i]], dx, dy, false, this.model.getRoot())[0]);
7590 dx = this.snap(dx);
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
8955 var dx = this.container.scrollLeft / this.view.scale - this.view.translate.x;
8962 dx = Math.max(dx, layout.x * page.width);
8966 return new mxPoint(this.snap(dx + gs), this.snap(dy + gs));
9181 var dx = Math.abs(this.startX - me.getGraphX());
9184 if (dx > tol || dy > tol)
11941 var dx = 0;
11951 this.shape.stroke = (dx == 0) ? mxConstants.NONE : sel.stroke;
11953 dx) * this.graph.view.scale;
11968 dx = Math.max(Graph.minTableColumnWidth - g.width,
11974 dx = Math.min(dx, ng.width - Graph.minTableColumnWidth);
11980 if (dx != 0)
11983 dx, shiftPressed);
11991 dx = 0;
12002 dx = 0;
12593 var dx = null;
12600 dx = (this.currentX - x0) / this.graph.view.scale;
12605 dx = this.graph.snap(dx);
12610 if (Math.abs(dx) < this.graph.tolerance)
12612 dx = 0;
12644 geo.translate(dx, dy);
12677 var dx = this.first.x - x;
12681 if (this.div != null || Math.abs(dx) > tol || Math.abs(dy) > tol)