Lines Matching refs:x2

694     drawDashedLine: function(ctx, x, y, x2, y2, da) {  argument
695 var dx = x2 - x,
1055 function getBoundsOfCurve(x0, y0, x1, y1, x2, y2, x3, y3) { argument
1067 b = 6 * x0 - 12 * x1 + 6 * x2;
1068 a = -3 * x0 + 9 * x1 - 9 * x2 + 3 * x3;
1107 x = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t * x3);
4914 x2: el.getAttribute('x2') || '100%',
4924 x2: el.getAttribute('cx') || '50%',
4969 x2: options.coords.x2 || 0, property in AnonymousFunction064b60f12a00.coords
5056 '" x2="', coords.x2,
5067 ' cx="', coords.x2,
5131 coords.x1, coords.y1, coords.x2, coords.y2);
5135 coords.x1, coords.y1, coords.r1, coords.x2, coords.y2, coords.r2);
9995 x2 = x1 + this._groupSelector.left,
9997 selectionX1Y1 = new fabric.Point(min(x1, x2), min(y1, y2)),
9998 selectionX2Y2 = new fabric.Point(max(x1, x2), max(y1, y2)),
9999 isClick = x1 === x2 && y1 === y2;
11800 x2: options.x2, property in gradient.coords
13480 coordProps = { x1: 1, x2: 1, y1: 1, y2: 1 }, property in coordProps
13522 x2: 0,
13561 this.width = Math.abs(this.x2 - this.x1);
13645 ctx.lineTo(p.x2, p.y2);
13667 fabric.util.drawDashedLine(ctx, p.x1, p.y1, p.x2, p.y2, this.strokeDashArray);
13686 var xMult = this.x1 <= this.x2 ? -1 : 1,
13690 x2 = (xMult * this.width * -0.5),
13695 x2: x2,
13709 p = { x1: this.x1, x2: this.x2, y1: this.y1, y2: this.y2 }; property in AnonymousFunction064b60f119f00.p
13718 '" x2="', p.x2,
13761 parsedAttributes.x2 || 0,
13776 var points = [object.x1, object.y1, object.x2, object.y2];
19255 var x2 = (i + j * dW) * 4, weight = 0, weights = 0, weightsAlpha = 0,
19288 data2[x2] = gxR / weights;
19289 data2[x2 + 1] = gxG / weights;
19290 data2[x2 + 2] = gxB / weights;
19291 data2[x2 + 3] = gxA / weightsAlpha;