Lines Matching refs:parentHeight

864 …           mxVsdxCodec.prototype.addShape = function (graph, shape, parent, pageId, parentHeight) {
865 shape.parentHeight = parentHeight;
887 v1 = this.addGroup(graph, shape, parent, pageId, parentHeight);
890 v1 = this.addVertex(graph, shape, parent, pageId, parentHeight);
955 … mxVsdxCodec.prototype.addGroup = function (graph, shape, parent, pageId, parentHeight) {
975 var o = shape.getOriginPoint(parentHeight, true);
1042 this.addUnconnectedEdge(graph, group, subShape, parentHeight);
1091 … mxVsdxCodec.prototype.addVertex = function (graph, shape, parent, pageId, parentHeight) {
1111 var coordinates = shape.getOriginPoint(parentHeight, true);
1209 var parentHeight = pageHeight;
1213 parentHeight = parentGeo.height;
1216 var beginXY = edgeShape.getStartXY(parentHeight);
1217 var endXY = edgeShape.getEndXY(parentHeight);
1218 … var points = edgeShape.getRoutingPoints(parentHeight, beginXY, edgeShape.getRotation());
1282 var styleMap = edgeShape.getStyleFromEdgeShape(parentHeight);
1365 var pointList = edgeShape.getControlPoints(parentHeight);
1382 var parentHeight = pageHeight;
1386 parentHeight = parentGeometry.height;
1389 var beginXY = edgeShape.getStartXY(parentHeight);
1390 var endXY = edgeShape.getEndXY(parentHeight);
1391 var styleMap = edgeShape.getStyleFromEdgeShape(parentHeight);
1393 … var points = edgeShape.getRoutingPoints(parentHeight, beginXY, edgeShape.getRotation());
1439 var pointList = edgeShape.getControlPoints(parentHeight);
2816 … mxVsdxGeometryList.prototype.getRoutingPoints = function (parentHeight, startPoint, rotation) { argument
9769 _this.parentHeight = 0;
10525 VsdxShape.prototype.getOriginPoint = function (parentHeight, rotation) {
10533 var y = parentHeight - ((py) + (h - lpy));
11762 VsdxShape.prototype.getStartXY = function (parentHeight) {
11764 …var startY = Math.floor(Math.round((parentHeight - this.getScreenNumericalValue$org_w3c_dom_Elemen…
11772 VsdxShape.prototype.getEndXY = function (parentHeight) {
11774 …var endY = Math.floor(Math.round((parentHeight - this.getScreenNumericalValue$org_w3c_dom_Element$…
11784 … VsdxShape.prototype.getRoutingPoints = function (parentHeight, startPoint, rotation) {
11786 … return this.geomList.getRoutingPoints(parentHeight, startPoint, rotation);
11795 VsdxShape.prototype.getControlPoints = function (parentHeight) {
11796 var startXY = this.getStartXY(parentHeight);
11797 var endXY = this.getEndXY(parentHeight);
11846 VsdxShape.prototype.getStyleFromEdgeShape = function (parentHeight) {