Lines Matching refs:x2

3342 	    x2: x + width,
3395 || isPointInsideBBox$2(bbox2, bbox1.x2, bbox1.y)
3397 || isPointInsideBBox$2(bbox2, bbox1.x2, bbox1.y2)
3399 || isPointInsideBBox$2(bbox1, bbox2.x2, bbox2.y)
3401 || isPointInsideBBox$2(bbox1, bbox2.x2, bbox2.y2)
3402 || (bbox1.x < bbox2.x2 && bbox1.x > bbox2.x
3403 || bbox2.x < bbox1.x2 && bbox2.x > bbox1.x)
3414 function bezlen(x1, y1, x2, y2, x3, y3, x4, y4, z) { argument
3430 xbase = base3(ct, x1, x2, x3, x4),
3441 function intersectLines(x1, y1, x2, y2, x3, y3, x4, y4) { argument
3444 mmax(x1, x2) < mmin(x3, x4) ||
3445 mmin(x1, x2) > mmax(x3, x4) ||
3452 var nx = (x1 * y2 - y1 * x2) * (x3 - x4) - (x1 - x2) * (x3 * y4 - y3 * x4),
3453 ny = (x1 * y2 - y1 * x2) * (y3 - y4) - (y1 - y2) * (x3 * y4 - y3 * x4),
3454 denominator = (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4);
3466 px2 < +mmin(x1, x2).toFixed(2) ||
3467 px2 > +mmax(x1, x2).toFixed(2) ||
3593 var x1, y1, x2, y2, x1m, y1m, x2m, y2m, bez1, bez2,
3618 x2 = x2m = pj[1];
3623 bez2 = [x2, y2].concat(pj.slice(1));
3624 x2 = bez2[6];
3627 bez2 = [x2, y2, x2, y2, x2m, y2m, x2m, y2m];
3628 x2 = x2m;
3762 function lineToCurve(x1, y1, x2, y2) { argument
3764 x1, y1, x2,
3765 y2, x2, y2
3769 function qubicToCurve(x1, y1, ax, ay, x2, y2) { argument
3776 _13 * x2 + _23 * ax,
3778 x2,
3783 function arcToCurve(x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive) { argument
3802 xy = rotate(x2, y2, -rad);
3803 x2 = xy.x;
3806 var x = (x1 - x2) / 2,
3821 cx = k * rx * y / ry + (x1 + x2) / 2,
3827 f2 = x2 < cx ? PI - f2 : f2;
3848 x2old = x2,
3852 x2 = cx + rx * math.cos(f2);
3854 res = arcToCurve(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy]);
3868 m3 = [x2 + hx * s2, y2 - hy * c2],
3869 m4 = [x2, y2];
3892 function curveBBox(x0, y0, x1, y1, x2, y2, x3, y3) { argument
3900 b = 6 * x0 - 12 * x1 + 6 * x2;
3901 a = -3 * x0 + 9 * x1 - 9 * x2 + 3 * x3;
3951 …bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t *…