Lines Matching refs:t

1286             t,
1296 blue = toInt((t = rgb[3].charAt(3)) + t, 16);
1297 green = toInt((t = rgb[3].charAt(2)) + t, 16);
1298 red = toInt((t = rgb[3].charAt(1)) + t, 16);
1474 var paramCounts = {a: 7, c: 6, h: 1, l: 2, m: 2, r: 4, q: 4, s: 4, t: 2, v: 1, z: 0}, property in AnonymousFunctionfecc8d703400.paramCounts
1520 var paramCounts = {r: 3, s: 4, t: 2, m: 6}, property in AnonymousFunctionfecc8d703700.paramCounts
1596 R.findDotsAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
1597 var t1 = 1 - t,
1600 t2 = t * t,
1601 t3 = t2 * t,
1602 x = t13 * p1x + t12 * 3 * t * c1x + t1 * 3 * t * t * c2x + t3 * p2x,
1603 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
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),
1608 ax = t1 * p1x + t * c1x,
1609 ay = t1 * p1y + t * c1y,
1610 cx = t1 * c2x + t * p2x,
1611 cy = t1 * c2y + t * p2y,
1709 function base3(t, p1, p2, p3, p4) { argument
1711 t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3;
1712 return t * t2 - 3 * p1 + 3 * p2;
1737 var t = 1,
1738 step = t / 2,
1739 t2 = t - step,
1806 dots1.push({x: p.x, y: p.y, t: i / n1});
1810 dots2.push({x: p.x, y: p.y, t: i / n2});
1826 var t1 = di.t + abs((is[ci] - di[ci]) / (di1[ci] - di[ci])) * (di1.t - di.t),
1827 t2 = dj.t + abs((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t);
2285 t = math.tan(df / 4),
2286 hx = 4 / 3 * rx * t,
2287 hy = 4 / 3 * ry * t,
2305 findDotAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
2306 var t1 = 1 - t;
2308 … x: pow(t1, 3) * p1x + pow(t1, 2) * 3 * t * c1x + t1 * 3 * t * t * c2x + pow(t, 3) * p2x,
2309 … y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
2601 var t = tdata[i],
2602 tlen = t.length,
2603 command = Str(t[0]).toLowerCase(),
2604 absolute = t[0] != command,
2615 x2 = inver.x(t[1], t[2]);
2616 y2 = inver.y(t[1], t[2]);
2619 m.translate(t[1], t[2]);
2624 m.rotate(t[1], bb.x + bb.width / 2, bb.y + bb.height / 2);
2625 deg += t[1];
2628 x2 = inver.x(t[2], t[3]);
2629 y2 = inver.y(t[2], t[3]);
2630 m.rotate(t[1], x2, y2);
2632 m.rotate(t[1], t[2], t[3]);
2634 deg += t[1];
2639 m.scale(t[1], t[tlen - 1], bb.x + bb.width / 2, bb.y + bb.height / 2);
2640 sx *= t[1];
2641 sy *= t[tlen - 1];
2644 x2 = inver.x(t[3], t[4]);
2645 y2 = inver.y(t[3], t[4]);
2646 m.scale(t[1], t[2], x2, y2);
2648 m.scale(t[1], t[2], t[3], t[4]);
2650 sx *= t[1];
2651 sy *= t[2];
2654 m.add(t[1], t[2], t[3], t[4], t[5], t[6]);
4408 t = X + Y + .5;
4409 return (1 - t) * 3 * t * t + t * t * t;
4478 t = e.t,
4634 function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) { argument
4641 function sampleCurveX(t) { argument
4642 return ((ax * t + bx) * t + cx) * t;
4645 var t = solveCurveX(x, epsilon);
4646 return ((ay * t + by) * t + cy) * t;
4684 return solve(t, 1 / (200 * duration));
4904 easyeasy = function (t) { argument
4905 return CubicBezierAtTime(t, +curve[1], +curve[2], +curve[3], +curve[4], ms);
5464 return {l: "L", c: "C", x: "z", t: "m", r: "l", v: "c"}[command] || "M";
5915 t = 5;
5935 t += 2;
5986 …m: (isEnd ? "rotate(180 " + w / 2 + " " + h / 2 + ") " : E) + "scale(" + w / t + "," + h / t + ")",
5987 "stroke-width": (1 / ((w / t + h / t) / 2)).toFixed(4)
6895 var t = this;
6899 t.attrs.blur = size;
6903 t.paper.defs.appendChild(fltr);
6904 t._blur = fltr;
6905 $(t.node, {filter: "url(#" + fltr.id + ")"});
6907 if (t._blur) {
6908 t._blur.parentNode.removeChild(t._blur);
6909 delete t._blur;
6910 delete t.attrs.blur;
6912 t.node.removeAttribute("filter");
6914 return t;