Lines Matching refs:c

500     })(/[xy]/g, function (c) {  argument
502 v = c == "x" ? r : (r & 3 | 8);
1078 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 AnonymousFunction19fc41e62f00.paramCounts
1084 Str(pathString).replace(pathCommand, function (a, b, c) { argument
1087 c.replace(pathValues, function (a, b) {
1130 Str(TString).replace(tCommand, function (a, b, c) { argument
1133 c.replace(pathValues, function (a, b) {
1929 c = p1x - c1x,
1930 t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a,
1931 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a,
1949 c = p1y - c1y;
1950 t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a;
1951 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a;
2446 R.matrix = function (a, b, c, d, e, f) { argument
2447 return new Matrix(a, b, c, d, e, f);
2449 function Matrix(a, b, c, d, e, f) { argument
2453 this.c = +c;
2460 this.c = 0;
2482 matrixproto.add = function (a, b, c, d, e, f) { argument
2484 m = [[this.a, this.c, this.e], [this.b, this.d, this.f], [0, 0, 1]],
2485 matrix = [[a, c, e], [b, d, f], [0, 0, 1]],
2489 matrix = [[a.a, a.c, a.e], [a.b, a.d, a.f], [0, 0, 1]];
2503 this.c = out[0][1];
2517 x = me.a * me.d - me.b * me.c;
2518 …return new Matrix(me.d / x, -me.b / x, -me.c / x, me.a / x, (me.c * me.f - me.d * me.e) / x, (me.b…
2528 return new Matrix(this.a, this.b, this.c, this.d, this.e, this.f);
2589 return x * this.a + y * this.c + this.e;
2649 var row = [[this.a, this.c], [this.b, this.d]];
3805 c = s.width / 2,
3810 for (var i = 1; i < c + 1; i++) {
3816 "stroke-width": +(s.width / c * i).toFixed(3),
3817 opacity: +(s.opacity / c).toFixed(3)
4485 m.c,
4495 (to2.matrix.c - m.c) / ms,
5117 return {l: "L", c: "C", x: "z", t: "m", r: "l", v: "c"}[command] || "M";