Lines Matching +refs:text +refs:line +refs:d

898             el = glob.doc.createTextNode(attr.text || attr["#text"] || "");
901 el = glob.doc.createComment(attr.text || attr["#text"] || "");
937 el.nodeValue = attr.text;
2193 text: node.nodeValue
3646 function Matrix(a, b, c, d, e, f) { argument
3651 this.d = a.d;
3660 this.d = +d;
3667 this.d = 1;
3687 matrixproto.add = function (a, b, c, d, e, f) { argument
3689 m = [[this.a, this.c, this.e], [this.b, this.d, this.f], [0, 0, 1]],
3690 matrix = [[a, c, e], [b, d, f], [0, 0, 1]],
3694 matrix = [[a.a, a.c, a.e], [a.b, a.d, a.f], [0, 0, 1]];
3709 this.d = out[1][1];
3723 x = me.a * me.d - me.b * me.c;
3724 …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…
3734 return new Matrix(this.a, this.b, this.c, this.d, this.e, this.f);
3805 return x * this.b + y * this.d + this.f;
3832 return this.a * this.d - this.b * this.c;
3855 var row = [[this.a, this.c], [this.b, this.d]];
3933 Snap.matrix = function (a, b, c, d, e, f) { argument
3934 return new Matrix(a, b, c, d, e, f);
4098 $(this.node, {d: value});
4111 this.attr({d: value});
4796 proto.path = function (d) { argument
4798 if (is(d, "object") && !is(d, "array")) {
4799 attr = d;
4800 } else if (d) {
4801 attr = {d: d}; property in proto.path.attr
5009 proto.text = function (x, y, text) { argument
5017 text: text || "" property in proto.text.attr
5037 proto.line = function (x1, y1, x2, y2) { function
5263 d = doc.createElement("div"),
5266 f.appendChild(d);
5267 d.appendChild(svg);
5269 res = d.innerHTML;
5824 line: function (el) {
6230 processPath = function (path, d, pcom) { argument
6233 return ["C", d.x, d.y, d.x, d.y, d.x, d.y];
6235 !(path[0] in {T: 1, Q: 1}) && (d.qx = d.qy = null);
6238 d.X = path[1];
6239 d.Y = path[2];
6242 path = ["C"].concat(a2c.apply(0, [d.x, d.y].concat(path.slice(1))));
6246 nx = d.x * 2 - d.bx; // And reflect the previous
6247 … ny = d.y * 2 - d.by; // command's control point relative to the current point.
6250 nx = d.x;
6251 ny = d.y;
6257 d.qx = d.x * 2 - d.qx; // And make a reflection similar
6258 d.qy = d.y * 2 - d.qy; // to case "S".
6261 d.qx = d.x;
6262 d.qy = d.y;
6264 path = ["C"].concat(q2c(d.x, d.y, d.qx, d.qy, path[1], path[2]));
6267 d.qx = path[1];
6268 d.qy = path[2];
6269 path = ["C"].concat(q2c(d.x, d.y, path[1], path[2], path[3], path[4]));
6272 path = ["C"].concat(l2c(d.x, d.y, path[1], path[2]));
6275 path = ["C"].concat(l2c(d.x, d.y, path[1], d.y));
6278 path = ["C"].concat(l2c(d.x, d.y, d.x, path[1]));
6281 path = ["C"].concat(l2c(d.x, d.y, d.X, d.Y));
6383 var d = [];
6407 d.push(["C",
6417 return d;
7133 from = [["m", t1.a, t1.b, t1.c, t1.d, t1.e, t1.f]];
7134 to = [["m", t2.a, t2.b, t2.c, t2.d, t2.e, t2.f]];
7935 d: 0.2126 - 0.2126 * (1 - amount),
7962 d: 0.349 - 0.349 * (1 - amount),