Lines Matching refs:w

1087 		RoughCanvas.prototype.rect = function(x, y, w, h)  argument
1096 this.nextShape = this.rc.generator.rectangle(x, y, w, h, this.getStyle(true, true));
1100 RoughCanvas.prototype.ellipse = function(x, y, w, h) argument
1109 … this.nextShape = this.rc.generator.ellipse(x + w / 2, y + h / 2, w, h, this.getStyle(true, true));
1113 RoughCanvas.prototype.roundrect = function(x, y, w, h, dx, dy) argument
1123 this.lineTo(x + w - dx, y);
1124 this.quadTo(x + w, y, x + w, y + dy);
1125 this.lineTo(x + w, y + h - dy);
1126 this.quadTo(x + w, y + h, x + w - dx, y + h);
1331 mxShape.prototype.paintGlassEffect = function(c, x, y, w, h, arc) argument
1999 var w = parseInt(config.pageFormat.width);
2002 if (!isNaN(w) && w > 0 && !isNaN(h) && h > 0)
2004 mxGraph.prototype.defaultPageFormat = new mxRectangle(0, 0, w, h); argument
3354 Editor.prototype.getMaxCanvasScale = function(w, h, scale) argument
3358 return Math.min(scale, Math.min(max / w, max / h));
3406 var w = parseInt(svgRoot.getAttribute('width'));
3412 … scale = (!limitHeight) ? width / w : Math.min(1, Math.min((width * 3) / (h * 4), width / w));
3415 scale = this.getMaxCanvasScale(w, h, scale);
3416 w = Math.ceil(scale * w);
3419 canvas.setAttribute('width', w);
3426 ctx.rect(0, 0, w, h);
3479 for (var i = x; i < w; i += phase)
5958 …mxSvgCanvas2D.prototype.updateTextNodes = function(x, y, w, h, align, valign, wrap, overflow, clip… argument
7636 w = parseFloat(tokens[2]) + 6;
7639 svgRoot.setAttribute('viewBox', tokens[0] + ' ' + tokens[1] + ' ' + w + ' ' + h);
8223 pv.renderPage = function(w, h, dx, dy, content, pageNumber) argument