Lines Matching refs:y1

2320 				pdfDoc.moveTo(vector.x1, vector.y1);
13668 var x = vector.x, y = vector.y, x1 = vector.x1, y1 = vector.y1, x2 = vector.x2, y2 = vector.y2;
13673 vector.y1 = y1;
14517 h = Math.max(h, vector.y1, vector.y2);
15158 vector.y1 += y;
16838 y1: y,
16852 TableProcessor.prototype.drawVerticalLine = function(x, y0, y1, vLineIndex, writer) {
16859 y1: y0,
16860 y2: y1,
16896 ys[ys.length - 1].y1 = pageBreak.prevY;
16902 ys[ys.length - 1].y1 = endingY;
16904 var skipOrphanePadding = (ys[0].y1 - ys[0].y0 === this.rowPaddingTop);
16909 var y1 = ys[yi].y0;
16910 var y2 = ys[yi].y1;
16925 … this.drawVerticalLine(xs[i].x, y1 - hzLineOffset, y2 + this.bottomLineWidth, xs[i].index, writer);
16932 var yf = y1 - hzLineOffset;
16950 this.drawHorizontalLine(rowIndex, writer, y1);
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) {
28312 this.y1 = y1;
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) {
28342 this.y1 = y1;
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);
28586 var cos, rad, sin, x, x1, y, y1, _ref;
28597 y1 = x * sin + y * cos;
28599 y -= y1;
28923 … segments, sfactor, sfactor_sq, sin_th, th, th0, th1, th2, th3, th_arc, x0, x1, xc, y0, y1, yc, _i;
28944 y1 = a10 * x + a11 * y;
28945 d = (x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0);
28954 xc = 0.5 * (x0 + x1) - sfactor * (y1 - y0);
28955 yc = 0.5 * (y0 + y1) + sfactor * (x1 - x0);
28957 th1 = Math.atan2(y1 - yc, x1 - xc);
28975 var a00, a01, a10, a11, t, th_half, x1, x2, x3, y1, y2, y3;
28983 y1 = cy + Math.sin(th0) + t * Math.cos(th0);
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);
66013 _convertRect: function(x1, y1, w, h) {
66015 y2 = y1;
66016 y1 += h;
66019 x1 = m0 * x1 + m2 * y1 + m4;
66020 y1 = m1 * x1 + m3 * y1 + m5;
66023 return [x1, y1, x2, y2];