Lines Matching refs:out

65                 out = [],
79 out.push(l.apply(scope, args));
82 return out;
89 out.push(l.apply(scope, args));
96 l && out.push(l.apply(scope, args));
105 out.push(l.apply(scope, args));
113 return out.length ? out : null;
141 out = [];
152 out = out.concat(item.f || []);
158 return out;
2838 var out = [[], [], []],
2853 out[x][y] = res;
2856 this.a = out[0][0];
2857 this.b = out[1][0];
2858 this.c = out[0][1];
2859 this.d = out[1][1];
2860 this.e = out[0][2];
2861 this.f = out[1][2];
2998 var out = {};
3000 out.dx = this.e;
3001 out.dy = this.f;
3005 out.scalex = math.sqrt(norm(row[0]));
3008 out.shear = row[0][0] * row[1][0] + row[0][1] * row[1][1];
3009 row[1] = [row[1][0] - row[0][0] * out.shear, row[1][1] - row[0][1] * out.shear];
3011 out.scaley = math.sqrt(norm(row[1]));
3013 out.shear /= out.scaley;
3019 out.rotate = R.deg(math.acos(cos));
3021 out.rotate = 360 - out.rotate;
3024 out.rotate = R.deg(math.asin(sin));
3027out.isSimple = !+out.shear.toFixed(9) && (out.scalex.toFixed(9) == out.scaley.toFixed(9) || !out.r…
3028out.isSuperSimple = !+out.shear.toFixed(9) && out.scalex.toFixed(9) == out.scaley.toFixed(9) && !o…
3029 out.noRotation = !+out.shear.toFixed(9) && !out.rotate;
3030 return out;
3662 var out = R._engine.circle(this, x || 0, y || 0, r || 0);
3663 this.__set__ && this.__set__.push(out);
3664 return out;
3688 var out = R._engine.rect(this, x || 0, y || 0, w || 0, h || 0, r || 0);
3689 this.__set__ && this.__set__.push(out);
3690 return out;
3710 var out = R._engine.ellipse(this, x || 0, y || 0, rx || 0, ry || 0);
3711 this.__set__ && this.__set__.push(out);
3712 return out;
3748 var out = R._engine.path(R.format[apply](R, arguments), this);
3749 this.__set__ && this.__set__.push(out);
3750 return out;
3771 var out = R._engine.image(this, src || "about:blank", x || 0, y || 0, w || 0, h || 0);
3772 this.__set__ && this.__set__.push(out);
3773 return out;
3792 var out = R._engine.text(this, x || 0, y || 0, Str(text));
3793 this.__set__ && this.__set__.push(out);
3794 return out;
3815 var out = new Set(itemsArray);
3816 this.__set__ && this.__set__.push(out);
3817 out["paper"] = this;
3818 out["type"] = "set";
3819 return out;
3847 var out = this.__set__;
3849 return out;
4127 var out = this.paper[this.type]().attr(this.attr());
4128 this.__set__ && this.__set__.push(out);
4129 return out;
4167 out = r.set(),
4171 out.push(r.path(path).attr({
4180 return out.insertBefore(this).translate(s.offsetx, s.offsety);
5063 var out = [],
5078 out.push({
5087 return out;
6771 out = {};
6775 out[name] = this.attrs[name];
6777 out[name] = this.paper.customAttributes[name].def;
6779 out[name] = R._availableAttrs[name];
6782 return ii - 1 ? out : out[names[0]];
6785 out = {};
6787 out[name[i]] = this.attr(name[i]);
6789 return out;
7745 out = {};
7749 out[name] = this.attrs[name];
7751 out[name] = this.paper.customAttributes[name].def;
7753 out[name] = R._availableAttrs[name];
7756 return ii - 1 ? out : out[names[0]];
7759 out = {};
7761 out[name[i]] = this.attr(name[i]);
7763 return out;