Lines Matching refs:dx

40 		    		var dx = edgesObj.dx, dy = edgesObj.dy;
44 this.importEdge(edges[j], graph, parent, dx, dy);
85 var dx = pe.x - p0.x
88 var x = p0.x + ratio * dx;
91 var d = Math.sqrt(dx*dx + dy*dy);
92 dx /= d;
96 y += dist * dx;
503 var dx = 0, dy = 0;
506 dx += p.geometry.x;
514 this.importNode(nodes[i], graph, parent, dx, dy);
520 dx: dx,
578 mxGraphMlCodec.prototype.importNode = function (nodeElement, graph, parent, dx, dy) argument
606 this.addNodeGeo(node, dataObj, dx, dy);
664 this.addNodeGeo(node, shape[mxGraphMlConstants.GEOMETRY], dx, dy);
1856 mxGraphMlCodec.prototype.addNodeGeo = function (node, geoObj, dx, dy) argument
1877 geo.x = parseFloat(x) - dx;
1884 mxGraphMlCodec.prototype.importEdge = function (edgeElement, graph, parent, dx, dy) argument
1910 this.addEdgeGeo(edge, dataObj, dx, dy);
1924 var absPoints = this.addEdgePath(edge, desktopEdgeObj["y:Path"], style, dx, dy);
1967 mxGraphMlCodec.prototype.addEdgeGeo = function (edge, geoObj, dx, dy) argument
1980 points.push(new mxPoint(parseFloat(xy[0]) - dx, parseFloat(xy[1]) - dy));
1988 mxGraphMlCodec.prototype.addEdgePath = function (edge, pathObj, style, dx, dy) argument
2001 …absPoints.push(new mxPoint(srcGeo.x + style["exitX"] * srcGeo.width - dx, srcGeo.y + style["exitY"…
2005 absPoints.push(new mxPoint(srcGeo.x + srcGeo.width/2 - dx, srcGeo.y + srcGeo.height/2 - dy));
2014 …endP = new mxPoint(trgGeo.x + style["entryX"] * trgGeo.width - dx, trgGeo.y + style["entryY"] * tr…
2018 endP = new mxPoint(trgGeo.x + trgGeo.width/2 - dx, trgGeo.y + trgGeo.height/2 - dy);
2034 var p = new mxPoint(parseFloat(list[i].x) - dx, parseFloat(list[i].y) - dy)
2536 var dx = node.source.geometry.getCenterX() - node.target.geometry.getCenterX();
2567 …lGeo.y = ((position == "center"? 0 : distance) + lGeo.height/2 * sign * (Math.abs(dx) > Math.abs(d…
2572 lGeo.offset = new mxPoint(lblX + dx/2 + (dx > 0? -lGeo.width : lGeo.width), lblY);