Lines Matching refs:t2

1214             t2 = t * t,
1215 t3 = t2 * t,
1218 mx = p1x + 2 * t * (c1x - p1x) + t2 * (c2x - 2 * c1x + p1x),
1219 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
1220 nx = c1x + 2 * t * (c2x - c1x) + t2 * (p2x - 2 * c2x + c1x),
1221 ny = c1y + 2 * t * (c2y - c1y) + t2 * (p2y - 2 * c2y + c1y),
1325 t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3;
1326 return t * t2 - 3 * p1 + 3 * p2;
1353 t2 = t - step,
1356 l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2);
1359 t2 += (l < ll ? 1 : -1) * step;
1360 l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2);
1362 return t2;
1441 t2 = dj.t + abs((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t);
1442 if (t1 >= 0 && t1 <= 1.001 && t2 >= 0 && t2 <= 1.001) {
1450 t2: mmin(t2, 1)
1931 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a,
1936 abs(t2) > "1e12" && (t2 = .5);
1942 if (t2 > 0 && t2 < 1) {
1943 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
1951 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a;
1953 abs(t2) > "1e12" && (t2 = .5);
1959 if (t2 > 0 && t2 < 1) {
1960 dot = findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t2);
2346 equaliseTransform = R._equaliseTransform = function (t1, t2) { argument
2347 t2 = Str(t2).replace(/\.{3}|\u2026/g, t1);
2349 t2 = R.parseTransformString(t2) || [];
2350 var maxlength = mmax(t1.length, t2.length),
2356 tt1 = t1[i] || getEmpty(t2[i]);
2357 tt2 = t2[i] || getEmpty(tt1);
4288 var t0, t1, t2, x2, d2, i;
4289 for(t2 = x, i = 0; i < 8; i++) {
4290 x2 = sampleCurveX(t2) - x;
4292 return t2;
4294 d2 = (3 * ax * t2 + 2 * bx) * t2 + cx;
4298 t2 = t2 - x2 / d2;
4302 t2 = x;
4303 if (t2 < t0) {
4306 if (t2 > t1) {
4310 x2 = sampleCurveX(t2);
4312 return t2;
4315 t0 = t2;
4317 t1 = t2;
4319 t2 = (t1 - t0) / 2 + t0;
4321 return t2;