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);
5443 w: font.w, property in AnonymousFunctionfecc8d70d100.fontcopy
5461 w: path.w, property in fontcopy.glyphs
5567 …shift += notfirst ? (prev.w || font.w) + (prev.k && prev.k[letters[i]] || 0) + (font.w * letter_sp…
5913 w = 3,
5928 case "long": w = 5; break;
5929 case "short": w = 2; break;
5933 w += 2;
5943 refX = dx = w / 2;
5962 markerId = "raphael-marker-" + se + type + w + h;
5979 markerWidth: w,
5986 …transform: (isEnd ? "rotate(180 " + w / 2 + " " + h / 2 + ") " : E) + "scale(" + w / t + "," + h /…
5987 "stroke-width": (1 / ((w / t + h / t) / 2)).toFixed(4)
6246 var w = this.offsetWidth,
6248 $(el, {width: w, height: h});
6249 $(ig, {width: w, height: h});
6310 var cssrule = att.replace(/(\-.)/g, function (w) { argument
6311 return w.substring(1).toUpperCase();
6925 R._engine.rect = function (svg, x, y, w, h, r) { argument
6929 …res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", str…
6943 R._engine.image = function (svg, src, x, y, w, h) { argument
6945 $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
6949 res.attrs = {x: x, y: y, width: w, height: h, src: src};
7025 R._engine.setViewBox = function (x, y, w, h, fit) { argument
7026 eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
7027 var size = mmax(w / this.width, h / this.height),
7040 vb = x + S + y + S + w + S + h;
7053 this._viewBox = [x, y, w, h, !!fit];
7258 w = "medium",
7273 case "short": w = values[i]; break;
7278 stroke[se + "arrowlength"] = w;
7473 res.W = a.w = (brect.right - brect.left) / m;
7874 R._engine.rect = function (vml, x, y, w, h, r) { argument
7875 var path = R._rectPath(x, y, w, h, r),
7880 res.W = a.width = w;
7917 R._engine.image = function (vml, src, x, y, w, h) { argument
7918 var path = R._rectPath(x, y, w, h),
7926 res.W = a.width = w;
7935 res._.fillsize = [w, h];
7968 p.attrs.w = 1;
7995 R._engine.setViewBox = function (x, y, w, h, fit) { argument
7996 R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
7999 size = 1 / mmax(w / width, h / height),
8003 W = width / w;
8004 if (w * H < width) {
8005 x -= (width - w * H) / 2 / H;
8011 this._viewBox = [x, y, w, h, !!fit];