Lines Matching refs:strokewidth

392 …ath.max(0, parseFloat(mxUtils.getValue(this.style, 'size', this.size)) - 2) + 2 * this.strokewidth;
471 var dy = Math.min(h / 2, Math.round(h / 8) + this.strokewidth - 1);
522 Math.round(rect.height / 8) + this.strokewidth - 1), 0, 0);
685 function CylinderShape3(bounds, fill, stroke, strokewidth) argument
691 this.strokewidth = (strokewidth != null) ? strokewidth : 1;
1802 var margin = (Math.max(2, this.strokewidth + 1) * 2 + parseFloat(
1817 var margin = Math.max(2, this.strokewidth + 1) * 2 +
1849 var margin = (Math.max(2, this.strokewidth + 1) + parseFloat(
1865 …var margin = Math.max(2, this.strokewidth + 1) + parseFloat(this.style[mxConstants.STYLE_MARGIN] |…
1901 var arcSize = this.getArcSize(w + this.strokewidth, h + this.strokewidth) * arcspacing;
2650 var inset = parseFloat(mxUtils.getValue(this.style, 'inset', this.inset)) + this.strokewidth;
2699 var inset = parseFloat(mxUtils.getValue(this.style, 'inset', this.inset)) + this.strokewidth;
2890 …return mxUtils.getNumber(this.style, 'width', this.defaultWidth) + Math.max(0, this.strokewidth - …
2923 …return mxUtils.getNumber(this.style, 'width', this.defaultWidth) + Math.max(0, this.strokewidth - …
3554 function mxShapeBasicRect2(bounds, fill, stroke, strokewidth) argument
3560 this.strokewidth = (strokewidth != null) ? strokewidth : 1;
5654 var w = (state.shape.getEdgeWidth() - state.shape.strokewidth) * state.view.scale;
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);
5664 …state.style[mxConstants.STYLE_STARTSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 1…
5685 var w = (state.shape.getStartArrowWidth() - state.shape.strokewidth) * state.view.scale;
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);
5695 …state.style[mxConstants.STYLE_STARTSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 1…
5725 var w = (state.shape.getEdgeWidth() - state.shape.strokewidth) * state.view.scale;
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);
5735 …state.style[mxConstants.STYLE_ENDSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 100…
5756 var w = (state.shape.getEndArrowWidth() - state.shape.strokewidth) * state.view.scale;
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);
5766 …state.style[mxConstants.STYLE_ENDSIZE] = Math.round((l - state.shape.strokewidth) * 100 / 3) / 100…