Lines Matching refs:y2

694     drawDashedLine: function(ctx, x, y, x2, y2, da) {  argument
696 dy = y2 - y,
1055 function getBoundsOfCurve(x0, y0, x1, y1, x2, y2, x3, y3) { argument
1073 b = 6 * y0 - 12 * y1 + 6 * y2;
1074 a = -3 * y0 + 9 * y1 - 9 * y2 + 3 * y3;
1110 y = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t * y3);
4915 y2: el.getAttribute('y2') || 0
4925 y2: el.getAttribute('cy') || '50%',
4970 y2: options.coords.y2 || 0 property in AnonymousFunction064b60f12a00.coords
5057 '" y2="', coords.y2,
5068 '" cy="', coords.y2,
5131 coords.x1, coords.y1, coords.x2, coords.y2);
5135 coords.x1, coords.y1, coords.r1, coords.x2, coords.y2, coords.r2);
5283 if (options.y2) {
5284 options.y2 /= scaleFactor;
9996 y2 = y1 + this._groupSelector.top,
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;
11801 y2: options.y2 property in gradient.coords
13480 coordProps = { x1: 1, x2: 1, y1: 1, y2: 1 }, property in coordProps
13529 y2: 0,
13562 this.height = Math.abs(this.y2 - this.y1);
13645 ctx.lineTo(p.x2, p.y2);
13667 fabric.util.drawDashedLine(ctx, p.x1, p.y1, p.x2, p.y2, this.strokeDashArray);
13687 yMult = this.y1 <= this.y2 ? -1 : 1,
13691 y2 = (yMult * this.height * -0.5);
13697 y2: y2
13709 p = { x1: this.x1, x2: this.x2, y1: this.y1, y2: this.y2 }; property in AnonymousFunction064b60f119f00.p
13719 '" y2="', p.y2,
13762 parsedAttributes.y2 || 0
13776 var points = [object.x1, object.y1, object.x2, object.y2];