Lines Matching refs:l

3503 		var l = (w - size) / 2;
3504 var r = l + size;
3507 c.lineTo(l, t);
3508 c.lineTo(l, 0);
3515 c.lineTo(l, h);
3516 c.lineTo(l, b);
5655 …var l = mxUtils.getNumber(state.style, mxConstants.STYLE_STARTSIZE, mxConstants.ARROW_SIZE / 5) * …
5657 return new mxPoint(p0.x + nx * (l + state.shape.strokewidth * state.view.scale) + ny * w / 2,
5658 p0.y + ny * (l + state.shape.strokewidth * state.view.scale) - nx * w / 2);
5662 var l = mxUtils.ptLineDist(p0.x, p0.y, p0.x + ny, p0.y - nx, pt.x, pt.y);
5664 …state.style[mxConstants.STYLE_STARTSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 1…
5686 …var l = mxUtils.getNumber(state.style, mxConstants.STYLE_STARTSIZE, mxConstants.ARROW_SIZE / 5) * …
5688 return new mxPoint(p0.x + nx * (l + state.shape.strokewidth * state.view.scale) + ny * w / 2,
5689 p0.y + ny * (l + state.shape.strokewidth * state.view.scale) - nx * w / 2);
5693 var l = mxUtils.ptLineDist(p0.x, p0.y, p0.x + ny, p0.y - nx, pt.x, pt.y);
5695 …state.style[mxConstants.STYLE_STARTSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 1…
5726 …var l = mxUtils.getNumber(state.style, mxConstants.STYLE_ENDSIZE, mxConstants.ARROW_SIZE / 5) * 3 …
5728 return new mxPoint(p0.x + nx * (l + state.shape.strokewidth * state.view.scale) - ny * w / 2,
5729 p0.y + ny * (l + state.shape.strokewidth * state.view.scale) + nx * w / 2);
5733 var l = mxUtils.ptLineDist(p0.x, p0.y, p0.x + ny, p0.y - nx, pt.x, pt.y);
5735 …state.style[mxConstants.STYLE_ENDSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 100…
5757 …var l = mxUtils.getNumber(state.style, mxConstants.STYLE_ENDSIZE, mxConstants.ARROW_SIZE / 5) * 3 …
5759 return new mxPoint(p0.x + nx * (l + state.shape.strokewidth * state.view.scale) - ny * w / 2,
5760 p0.y + ny * (l + state.shape.strokewidth * state.view.scale) + nx * w / 2);
5764 var l = mxUtils.ptLineDist(p0.x, p0.y, p0.x + ny, p0.y - nx, pt.x, pt.y);
5766 …state.style[mxConstants.STYLE_ENDSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 100…
6936 var l = (w - size) / 2;
6937 var r = l + size;
6939 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, t * 0.5));
6940 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, 0));
6945 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, h - t * 0.5));
6946 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, h));
6956 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, b));
6957 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l * 0.5, t));
6961 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l * 0.5, b));
6962 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, l, t));