Lines Matching +full:p +full:- +full:up
2 * Copyright (c) 2019-2020, JGraph Ltd
290 // we need to have box sizes ready -> hence have to render visible boxes in HTML.
356 … : node.Level === 1 // this is children of SystemRoot - they appear as roots in the diagram
418 var offsetx = -diagramBoundary.getLeft() + diagramBoundary.getTop();
446 … var yCorrection = RPOrgChart.correctY? Math.min(0, -(RPOrgChart.parentChildSpacing / 2) + 5) : 0;
460 edge.mark = 1 << ix; //TODO Support up to 31 segments. In this a limit?
481 var up = uniquePoints[fx + ',' + fy];
483 if (up != null)
485 up.mark |= fp.mark;
495 var up = uniquePoints[tx + ',' + ty];
497 if (up != null)
499 up.mark |= tp.mark;
517 var up = uniquePoints[fx + ',' + fy2];
519 if (up != null)
521 up.mark |= ip.mark;
533 var up = uniquePoints[fx2 + ',' + fy]
535 if (up != null)
537 up.mark |= ip.mark;
557 var dy = a.y - b.y;
559 return dy == 0? a.x - b.x : dy;
562 function pointOnCell(geo, p) argument
564 … return p.x >= geo.x && p.x <= geo.x + geo.width && p.y >= geo.y && p.y <= geo.y + geo.height;
620 var p = pointsArr[i];
621 if (selected[p.x + ',' + p.y]) continue;
623 if (p.mark & lp.mark)
625 selected[p.x + ',' + p.y] = true;
626 return p;
652 lp = edgePoints[edgePoints.length - 1];
666 var lpX = edgePoints[edgePoints.length - 1].x;
668 for (var i = edgePoints.length - 2; i > 0; i--)