Lines Matching refs:h

4446       var h, s, l,
4453 h = s = 0; // achromatic
4460 h = (g - b) / d + (g < b ? 6 : 0);
4463 h = (b - r) / d + 2;
4466 h = (r - g) / d + 4;
4469 h /= 6;
4473 Math.round(h * 360),
4772 var h = (((parseFloat(match[1]) % 360) + 360) % 360) / 360,
4784 r = hue2rgb(p, q, h + 1/3);
4785 g = hue2rgb(p, q, h);
4786 b = hue2rgb(p, q, h - 1/3);
13002 h = this.height,
13014 h = strokeWidth;
13020 h += (h < 0 ? -strokeWidth : strokeWidth);
13024 h = h * this.scaleY + 2 * this.padding;
13027 return fabric.util.transformPoint(new fabric.Point(w, h), vpt, true);
13029 return { x: w, y: h };
14494 h = this.height,
14507 ctx.lineTo(x + w, y + h - ry);
14508 … isRounded && ctx.bezierCurveTo(x + w, y + h - k * ry, x + w - k * rx, y + h, x + w - rx, y + h);
14510 ctx.lineTo(x + rx, y + h);
14511 isRounded && ctx.bezierCurveTo(x + k * rx, y + h, x, y + h - k * ry, x, y + h - ry);
14530 h = this.height;
14534 fabric.util.drawDashedLine(ctx, x + w, y, x + w, y + h, this.strokeDashArray);
14535 fabric.util.drawDashedLine(ctx, x + w, y + h, x, y + h, this.strokeDashArray);
14536 fabric.util.drawDashedLine(ctx, x, y + h, x, y, this.strokeDashArray);
15083 h: 1, property in commandLengths
17059 h = this.height;
17066 fabric.util.drawDashedLine(ctx, x + w, y, x + w, y + h, this.strokeDashArray);
17067 fabric.util.drawDashedLine(ctx, x + w, y + h, x, y + h, this.strokeDashArray);
17068 fabric.util.drawDashedLine(ctx, x, y + h, x, y, this.strokeDashArray);
17816 _createImageData: function(w, h) { argument
17817 return this.tmpCtx.createImageData(w, h);
17838 h = sh,
17839 output = this._createImageData(w, h),
17846 for (var y = 0; y < h; y++) {
19217 bilinearFiltering: function(canvasEl, w, h, w2, h2) { argument
19221 w4 = 4 * (w - 1), img = context.getImageData(0, 0, w, h),