Lines Matching refs:w

639         rectPath = R._rectPath = function (x, y, w, h, r) {  argument
641 …"M", x + r, y], ["l", w - r * 2, 0], ["a", r, r, 0, 0, 1, r, r], ["l", 0, h - r * 2], ["a", r, r, …
643 return [["M", x, y], ["l", w, 0], ["l", 0, h], ["l", -w, 0], ["z"]];
2731 R._getContainer = function (x, y, w, h) { argument
2748 height: w
2756 width: w,
3687 paperproto.rect = function (x, y, w, h, r) { argument
3688 var out = R._engine.rect(this, x || 0, y || 0, w || 0, h || 0, r || 0);
3770 paperproto.image = function (src, x, y, w, h) { argument
3771 var out = R._engine.image(this, src || "about:blank", x || 0, y || 0, w || 0, h || 0);
3880 paperproto.setViewBox = function (x, y, w, h, fit) { argument
3881 return R._engine.setViewBox.call(this, x, y, w, h, fit);
5444 w: font.w, property in AnonymousFunctionaefe14e8d100.fontcopy
5462 w: path.w, property in fontcopy.glyphs
5568 …shift += notfirst ? (prev.w || font.w) + (prev.k && prev.k[letters[i]] || 0) + (font.w * letter_sp…
5914 w = 3,
5929 case "long": w = 5; break;
5930 case "short": w = 2; break;
5934 w += 2;
5944 refX = dx = w / 2;
5963 markerId = "raphael-marker-" + se + type + w + h;
5980 markerWidth: w,
5987 …transform: (isEnd ? "rotate(180 " + w / 2 + " " + h / 2 + ") " : E) + "scale(" + w / t + "," + h /…
5988 "stroke-width": (1 / ((w / t + h / t) / 2)).toFixed(4)
6240 var w = this.offsetWidth,
6242 $(el, {width: w, height: h});
6243 $(ig, {width: w, height: h});
6304 var cssrule = att.replace(/(\-.)/g, function (w) { argument
6305 return w.substring(1).toUpperCase();
6919 R._engine.rect = function (svg, x, y, w, h, r) { argument
6923 …res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", str…
6937 R._engine.image = function (svg, src, x, y, w, h) { argument
6939 $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
6943 res.attrs = {x: x, y: y, width: w, height: h, src: src};
7019 R._engine.setViewBox = function (x, y, w, h, fit) { argument
7020 eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
7021 var size = mmax(w / this.width, h / this.height),
7034 vb = x + S + y + S + w + S + h;
7047 this._viewBox = [x, y, w, h, !!fit];
7252 w = "medium",
7267 case "short": w = values[i]; break;
7272 stroke[se + "arrowlength"] = w;
7467 res.W = a.w = (brect.right - brect.left) / m;
7868 R._engine.rect = function (vml, x, y, w, h, r) { argument
7869 var path = R._rectPath(x, y, w, h, r),
7874 res.W = a.width = w;
7911 R._engine.image = function (vml, src, x, y, w, h) { argument
7912 var path = R._rectPath(x, y, w, h),
7920 res.W = a.width = w;
7929 res._.fillsize = [w, h];
7962 p.attrs.w = 1;
7989 R._engine.setViewBox = function (x, y, w, h, fit) { argument
7990 R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
7993 size = 1 / mmax(w / width, h / height),
7997 W = width / w;
7998 if (w * H < width) {
7999 x -= (width - w * H) / 2 / H;
8005 this._viewBox = [x, y, w, h, !!fit];