Lines Matching refs:pe

5113 	mxMarker.addMarker('dash', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled)  argument
5121 c.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2);
5122 c.lineTo(pe.x + ny / 2 - 3 * nx / 2, pe.y - 3 * ny / 2 - nx / 2);
5128 mxMarker.addMarker('box', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5132 var px = pe.x + nx / 2;
5133 var py = pe.y + ny / 2;
5135 pe.x -= nx;
5136 pe.y -= ny;
5159 mxMarker.addMarker('cross', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5167 c.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2);
5168 c.lineTo(pe.x + ny / 2 - 3 * nx / 2, pe.y - 3 * ny / 2 - nx / 2);
5169 c.moveTo(pe.x - nx / 2 + ny / 2, pe.y - ny / 2 - nx / 2);
5170 c.lineTo(pe.x - ny / 2 - 3 * nx / 2, pe.y - 3 * ny / 2 + nx / 2);
5175 function circleMarker(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5180 var pt = pe.clone();
5182 pe.x -= unitX * (2 * size + sw);
5183 pe.y -= unitY * (2 * size + sw);
5204 …mxMarker.addMarker('circlePlus', function(c, shape, type, pe, unitX, unitY, size, source, sw, fill… argument
5206 var pt = pe.clone();
5225 …mxMarker.addMarker('halfCircle', function(c, shape, type, pe, unitX, unitY, size, source, sw, fill… argument
5229 var pt = pe.clone();
5231 pe.x -= nx;
5232 pe.y -= ny;
5238 c.quadTo(pe.x - ny, pe.y + nx, pe.x, pe.y);
5239 c.quadTo(pe.x + ny, pe.y - nx, pt.x + ny, pt.y - nx);
5244 mxMarker.addMarker('async', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5255 var pt = pe.clone();
5260 pe.x += -unitX * f - endOffsetX;
5261 pe.y += -unitY * f - endOffsetY;
5295 return function(c, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5300 var pt = pe.clone();
5323 function arrow(canvas, shape, type, pe, unitX, unitY, size, source, sw, filled) argument
5334 var pt = pe.clone();
5339 pe.x += -unitX * f - endOffsetX;
5340 pe.y += -unitY * f - endOffsetY;
6317 var pe = pts[pts.length-1];
6332 if (pe == null)
6336 pe = new mxPoint(target.getCenterX(), target.getCenterY());
6348 if (pe != null && p0 != null)
6387 pt = new mxPoint(p0.x + (pe.x - p0.x) / 2, p0.y + (pe.y - p0.y) / 2);
6391 isoLineTo(pe.x, pe.y, false);