Lines Matching refs:x2

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;
13674 vector.x2 = x2;
14516 w = Math.max(w, vector.x1, vector.x2);
15157 vector.x2 += x;
16837 x2: currentLine.left + currentLine.width,
16858 x2: x + width/2,
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) {
28313 this.x2 = x2;
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) {
28344 this.x2 = x2;
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;
28986 x2 = x3 + t * Math.sin(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;
66017 x2 = x1 + w;
66021 x2 = m0 * x2 + m2 * y2 + m4;
66022 y2 = m1 * x2 + m3 * y2 + m5;
66023 return [x1, y1, x2, y2];