Lines Matching refs:t2

1600             t2 = t * t,
1601 t3 = t2 * t,
1604 mx = p1x + 2 * t * (c1x - p1x) + t2 * (c2x - 2 * c1x + p1x),
1605 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
1606 nx = c1x + 2 * t * (c2x - c1x) + t2 * (p2x - 2 * c2x + c1x),
1607 ny = c1y + 2 * t * (c2y - c1y) + t2 * (p2y - 2 * c2y + c1y),
1711 t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3;
1712 return t * t2 - 3 * p1 + 3 * p2;
1739 t2 = t - step,
1742 l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2);
1745 t2 += (l < ll ? 1 : -1) * step;
1746 l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2);
1748 return t2;
1827 t2 = dj.t + abs((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t);
1828 if (t1 >= 0 && t1 <= 1.001 && t2 >= 0 && t2 <= 1.001) {
1836 t2: mmin(t2, 1)
2317 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a,
2322 abs(t2) > "1e12" && (t2 = .5);
2328 if (t2 > 0 && t2 < 1) {
2329 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
2337 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a;
2339 abs(t2) > "1e12" && (t2 = .5);
2345 if (t2 > 0 && t2 < 1) {
2346 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
2701 equaliseTransform = R._equaliseTransform = function (t1, t2) { argument
2702 t2 = Str(t2).replace(/\.{3}|\u2026/g, t1);
2704 t2 = R.parseTransformString(t2) || [];
2705 var maxlength = mmax(t1.length, t2.length),
2711 tt1 = t1[i] || getEmpty(t2[i]);
2712 tt2 = t2[i] || getEmpty(tt1);
4649 var t0, t1, t2, x2, d2, i;
4650 for(t2 = x, i = 0; i < 8; i++) {
4651 x2 = sampleCurveX(t2) - x;
4653 return t2;
4655 d2 = (3 * ax * t2 + 2 * bx) * t2 + cx;
4659 t2 = t2 - x2 / d2;
4663 t2 = x;
4664 if (t2 < t0) {
4667 if (t2 > t1) {
4671 x2 = sampleCurveX(t2);
4673 return t2;
4676 t0 = t2;
4678 t1 = t2;
4680 t2 = (t1 - t0) / 2 + t0;
4682 return t2;