Lines Matching refs:d

717         var d = g.doc.createElement("div"),
719 d.innerHTML = '<v:shape adj="1"/>';
720 b = d.firstChild;
725 d = null;
1418 var d = [];
1442 d.push(["C",
1452 return d;
2364 processPath = function (path, d) { argument
2367 return ["C", d.x, d.y, d.x, d.y, d.x, d.y];
2369 !(path[0] in {T:1, Q:1}) && (d.qx = d.qy = null);
2372 d.X = path[1];
2373 d.Y = path[2];
2376 path = ["C"][concat](a2c[apply](0, [d.x, d.y][concat](path.slice(1))));
2380 nx = d.x * 2 - d.bx; // And reflect the previous
2381 … ny = d.y * 2 - d.by; // command's control point relative to the current point.
2384 nx = d.x;
2385 ny = d.y;
2391 d.qx = d.x * 2 - d.qx; // And make a reflection similar
2392 d.qy = d.y * 2 - d.qy; // to case "S".
2395 d.qx = d.x;
2396 d.qy = d.y;
2398 path = ["C"][concat](q2c(d.x, d.y, d.qx, d.qy, path[1], path[2]));
2401 d.qx = path[1];
2402 d.qy = path[2];
2403 path = ["C"][concat](q2c(d.x, d.y, path[1], path[2], path[3], path[4]));
2406 path = ["C"][concat](l2c(d.x, d.y, path[1], path[2]));
2409 path = ["C"][concat](l2c(d.x, d.y, path[1], d.y));
2412 path = ["C"][concat](l2c(d.x, d.y, d.x, path[1]));
2415 path = ["C"][concat](l2c(d.x, d.y, d.X, d.Y));
2494 var d = (end - start) / (j - i + 1);
2496 start += d;
2801 R.matrix = function (a, b, c, d, e, f) { argument
2802 return new Matrix(a, b, c, d, e, f);
2804 function Matrix(a, b, c, d, e, f) { argument
2809 this.d = +d;
2816 this.d = 1;
2837 matrixproto.add = function (a, b, c, d, e, f) { argument
2839 m = [[this.a, this.c, this.e], [this.b, this.d, this.f], [0, 0, 1]],
2840 matrix = [[a, c, e], [b, d, f], [0, 0, 1]],
2844 matrix = [[a.a, a.c, a.e], [a.b, a.d, a.f], [0, 0, 1]];
2859 this.d = out[1][1];
2872 x = me.a * me.d - me.b * me.c;
2873 …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…
2883 return new Matrix(this.a, this.b, this.c, this.d, this.e, this.f);
2957 return x * this.b + y * this.d + this.f;
3004 var row = [[this.a, this.c], [this.b, this.d]];
4847 m.d,
4857 (to2.matrix.d - m.d) / ms,
5464 d: path.d && "M" + path.d.replace(/[mlcxtrv]/g, function (command) { property in fontcopy.glyphs
5571 if (curr && curr.d) {
5572 …path += R.transformPath(curr.d, ["t", shift * scale, shifty * scale, "s", scale, scale, top, heigh…
5967 d: markers[type],
6009 attr.d = R.getSubpath(attrs.path, from, to);
6025 o._.arrows[se + "Path"] && $(node, {d: R.getSubpath(attrs.path, from, to)});
6144 $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
7475 for (var d = 0, dd = dirtyattrs.length; d < dd; d++) if (dirtyattrs[d] in params) {