Lines Matching refs:y2

2321 				pdfDoc.lineTo(vector.x2, vector.y2);
13668 var x = vector.x, y = vector.y, x1 = vector.x1, y1 = vector.y1, x2 = vector.x2, y2 = vector.y2;
13675 vector.y2 = y2;
14517 h = Math.max(h, vector.y1, vector.y2);
15159 vector.y2 += y;
16839 y2: y,
16860 y2: y1,
16910 var y2 = ys[yi].y1;
16913 y2 = y2 + this.rowPaddingBottom;
16925 … this.drawVerticalLine(xs[i].x, y1 - hzLineOffset, y2 + this.bottomLineWidth, xs[i].index, writer);
16938 h: y2+this.bottomLineWidth-yf,
16947 this.drawHorizontalLine(rowIndex + 1, writer, y2);
27983 linearGradient: function(x1, y1, x2, y2) {
27984 return new PDFLinearGradient(this, x1, y1, x2, y2);
27986 radialGradient: function(x1, y1, r1, x2, y2, r2) {
27987 return new PDFRadialGradient(this, x1, y1, r1, x2, y2, r2);
28309 function PDFLinearGradient(doc, x1, y1, x2, y2) {
28314 this.y2 = y2;
28322 Coords: [this.x1, this.y1, this.x2, this.y2],
28329 return new PDFLinearGradient(this.doc, this.x1, this.y1, this.x2, this.y2);
28339 function PDFRadialGradient(doc, x1, y1, r1, x2, y2, r2) {
28345 this.y2 = y2;
28354 Coords: [this.x1, this.y1, this.r1, this.x2, this.y2, this.r2],
28361 return new PDFRadialGradient(this.doc, this.x1, this.y1, this.r1, this.x2, this.y2, this.r2);
28975 var a00, a01, a10, a11, t, th_half, x1, x2, x3, y1, y2, y3;
28987 y2 = y3 - t * Math.cos(th1);
28988 …return [a00 * x1 + a01 * y1, a10 * x1 + a11 * y1, a00 * x2 + a01 * y2, a10 * x2 + a11 * y2, a00 * …
65946 var x1, x2, y1, y2, _ref;
65950 _ref = this._convertRect(x, y, w, h), x1 = _ref[0], y1 = _ref[1], x2 = _ref[2], y2 = _ref[3];
65951 options.QuadPoints = [x1, y2, x2, y2, x1, y1, x2, y1];
65979 lineAnnotation: function(x1, y1, x2, y2, options) {
65985 options.L = [x1, this.page.height - y1, x2, this.page.height - y2];
65986 return this.annotate(x1, y1, x2, y2, options);
66014 var m0, m1, m2, m3, m4, m5, x2, y2, _ref;
66015 y2 = y1;
66021 x2 = m0 * x2 + m2 * y2 + m4;
66022 y2 = m1 * x2 + m3 * y2 + m5;
66023 return [x1, y1, x2, y2];