Lines Matching refs:shape

1883 			var shape = null;
1887 shape = mxCellRenderer.defaultShapes[this.style['symbol' + counter]];
1889 if (shape != null)
1938 var tmp = new shape();
1941 shape.prototype.paintVertexShape.call(tmp, c, x2, y2, width, height); class
1947 while (shape != null);
2166 var shape = new ctor();
2167 shape.apply(this.state);
2169 shape.paintVertexShape(c, x, y, w, size);
5102 if (ss.style.shape == 'umlFrame')
5113 mxMarker.addMarker('dash', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5128 mxMarker.addMarker('box', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5159 mxMarker.addMarker('cross', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5175 function circleMarker(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5204 …mxMarker.addMarker('circlePlus', function(c, shape, type, pe, unitX, unitY, size, source, sw, fill… argument
5225 …mxMarker.addMarker('halfCircle', function(c, shape, type, pe, unitX, unitY, size, source, sw, fill… argument
5244 mxMarker.addMarker('async', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5295 return function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5323 function arrow(canvas, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5622 var w = state.shape.getEdgeWidth() * state.view.scale + spacing;
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…
5696 …state.style['startWidth'] = Math.max(0, Math.round(w * 2) - state.shape.getEdgeWidth()) / state.vi…
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…
5767 …state.style['endWidth'] = Math.max(0, Math.round(w * 2) - state.shape.getEdgeWidth()) / state.view…
6241 if (fn == null && this.state.shape != null && this.state.shape.isRoundable())