Lines Matching refs:t

715             t = X + Y + .5;
716 return (1 - t) * 3 * t * t + t * t * t;
1371 t,
1381 blue = toInt((t = rgb[3].charAt(3)) + t, 16);
1382 green = toInt((t = rgb[3].charAt(2)) + t, 16);
1383 red = toInt((t = rgb[3].charAt(1)) + t, 16);
1757 … var paramCounts = {a: 7, c: 6, o: 2, h: 1, l: 2, m: 2, r: 4, q: 4, s: 4, t: 2, v: 1, u: 3, z: 0},
1805 var paramCounts = {r: 3, s: 4, t: 2, m: 6},
1858 var t = tdata[i],
1859 tlen = t.length,
1860 command = Str(t[0]).toLowerCase(),
1861 absolute = t[0] != command,
1869 m.translate(t[1], 0);
1874 x2 = inver.x(t[1], t[2]);
1875 y2 = inver.y(t[1], t[2]);
1878 m.translate(t[1], t[2]);
1883 m.rotate(t[1], bb.x + bb.width / 2, bb.y + bb.height / 2);
1886 x2 = inver.x(t[2], t[3]);
1887 y2 = inver.y(t[2], t[3]);
1888 m.rotate(t[1], x2, y2);
1890 m.rotate(t[1], t[2], t[3]);
1896 m.scale(t[1], t[tlen - 1], bb.x + bb.width / 2, bb.y + bb.height / 2);
1899 x2 = inver.x(t[2], t[3]);
1900 y2 = inver.y(t[2], t[3]);
1901 m.scale(t[1], t[1], x2, y2);
1903 m.scale(t[1], t[1], t[2], t[3]);
1907 x2 = inver.x(t[3], t[4]);
1908 y2 = inver.y(t[3], t[4]);
1909 m.scale(t[1], t[2], x2, y2);
1911 m.scale(t[1], t[2], t[3], t[4]);
1915 m.add(t[1], t[2], t[3], t[4], t[5], t[6]);
5458 function findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
5459 var t1 = 1 - t,
5462 t2 = t * t,
5463 t3 = t2 * t,
5464 x = t13 * p1x + t12 * 3 * t * c1x + t1 * 3 * t * t * c2x + t3 * p2x,
5465 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
5466 mx = p1x + 2 * t * (c1x - p1x) + t2 * (c2x - 2 * c1x + p1x),
5467 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
5468 nx = c1x + 2 * t * (c2x - c1x) + t2 * (p2x - 2 * c2x + c1x),
5469 ny = c1y + 2 * t * (c2y - c1y) + t2 * (p2y - 2 * c2y + c1y),
5470 ax = t1 * p1x + t * c1x,
5471 ay = t1 * p1y + t * c1y,
5472 cx = t1 * c2x + t * p2x,
5473 cy = t1 * c2y + t * p2y,
5520 function base3(t, p1, p2, p3, p4) { argument
5522 t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3;
5523 return t * t2 - 3 * p1 + 3 * p2;
5548 var t = 1,
5549 step = t / 2,
5550 t2 = t - step,
5617 dots1.push({x: p.x, y: p.y, t: i / n1});
5621 dots2.push({x: p.x, y: p.y, t: i / n2});
5637 var t1 = di.t + abs((is[ci] - di[ci]) / (di1[ci] - di[ci])) * (di1.t - di.t),
5638 t2 = dj.t + abs((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t);
6127 t = math.tan(df / 4),
6128 hx = 4 / 3 * rx * t,
6129 hy = 4 / 3 * ry * t,
6147 function findDotAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
6148 var t1 = 1 - t;
6150 x: pow(t1, 3) * p1x + pow(t1, 2) * 3 * t * c1x + t1 * 3 * t * t * c2x + pow(t, 3) * p2x,
6151 y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
6162 a, b, c, t, t1, t2, b2ac, sqrtb2ac;
6177 t = -c / b;
6178 if (0 < t && t < 1) {
6179 tvalues.push(t);
6202 t = tvalues[j];
6203 mt = 1 - t;
6204 …bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t *…
6205 …bounds[1][j] = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t *…