Lines Matching refs:vertex

2251 	mxPerimeter.CenterPerimeter = function (bounds, vertex, next, orthogonal)  argument
2258 mxPerimeter.LifelinePerimeter = function (bounds, vertex, next, orthogonal) argument
2262 if (vertex != null)
2264 size = mxUtils.getValue(vertex.style, 'size', size) * vertex.view.scale;
2267 …var sw = (parseFloat(vertex.style[mxConstants.STYLE_STROKEWIDTH] || 1) * vertex.view.scale / 2) - …
2281 mxPerimeter.OrthogonalPerimeter = function (bounds, vertex, next, orthogonal) argument
2290 mxPerimeter.BackbonePerimeter = function (bounds, vertex, next, orthogonal) argument
2292 …var sw = (parseFloat(vertex.style[mxConstants.STYLE_STROKEWIDTH] || 1) * vertex.view.scale / 2) - …
2294 if (vertex.style['backboneSize'] != null)
2296 sw += (parseFloat(vertex.style['backboneSize']) * vertex.view.scale / 2) - 1;
2299 if (vertex.style[mxConstants.STYLE_DIRECTION] == 'south' ||
2300 vertex.style[mxConstants.STYLE_DIRECTION] == 'north')
2327 mxPerimeter.CalloutPerimeter = function (bounds, vertex, next, orthogonal) argument
2330 Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(vertex.style, 'size',
2331 CalloutShape.prototype.size)) * vertex.view.scale))),
2332 vertex.style), vertex, next, orthogonal);
2338 mxPerimeter.ParallelogramPerimeter = function (bounds, vertex, next, orthogonal) argument
2340 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2343 if (vertex != null)
2345 size = mxUtils.getValue(vertex.style, 'size', size);
2350 size *= vertex.view.scale;
2358 var direction = (vertex != null) ? mxUtils.getValue(
2359 vertex.style, mxConstants.STYLE_DIRECTION,
2401 mxPerimeter.TrapezoidPerimeter = function (bounds, vertex, next, orthogonal) argument
2403 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2406 if (vertex != null)
2408 size = mxUtils.getValue(vertex.style, 'size', size);
2413 size *= vertex.view.scale;
2421 var direction = (vertex != null) ? mxUtils.getValue(
2422 vertex.style, mxConstants.STYLE_DIRECTION,
2474 mxPerimeter.StepPerimeter = function (bounds, vertex, next, orthogonal) argument
2476 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2479 if (vertex != null)
2481 size = mxUtils.getValue(vertex.style, 'size', size);
2486 size *= vertex.view.scale;
2497 var direction = (vertex != null) ? mxUtils.getValue(
2498 vertex.style, mxConstants.STYLE_DIRECTION,
2551 mxPerimeter.HexagonPerimeter2 = function (bounds, vertex, next, orthogonal) argument
2553 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2556 if (vertex != null)
2558 size = mxUtils.getValue(vertex.style, 'size', size);
2563 size *= vertex.view.scale;
2574 var direction = (vertex != null) ? mxUtils.getValue(
2575 vertex.style, mxConstants.STYLE_DIRECTION,