Splitting fixes
[raphael] / raphael.svg.js
1 // ┌─────────────────────────────────────────────────────────────────────┐ \\
2 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
3 // ├─────────────────────────────────────────────────────────────────────┤ \\
4 // │ SVG Module                                                          │ \\
5 // ├─────────────────────────────────────────────────────────────────────┤ \\
6 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
7 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
8 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
9 // └─────────────────────────────────────────────────────────────────────┘ \\
10 window.Raphael.svg && function (R) {
11     var has = "hasOwnProperty",
12         Str = String,
13         toFloat = parseFloat,
14         toInt = parseInt,
15         math = Math,
16         mmax = math.max,
17         abs = math.abs,
18         pow = math.pow,
19         separator = /[, ]+/,
20         eve = R.eve,
21         E = "";
22     // SVG
23     var xlink = "http://www.w3.org/1999/xlink",
24         markers = {
25             block: "M5,0 0,2.5 5,5z",
26             classic: "M5,0 0,2.5 5,5 3.5,3 3.5,2z",
27             diamond: "M2.5,0 5,2.5 2.5,5 0,2.5z",
28             open: "M6,1 1,3.5 6,6",
29             oval: "M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"
30         },
31         markerCounter = {};
32     R.toString = function () {
33         return  "Your browser supports SVG.\nYou are running Rapha\xebl " + this.version;
34     };
35     var $ = function (el, attr) {
36         if (attr) {
37             if (typeof el == "string") {
38                 el = $(el);
39             }
40             for (var key in attr) if (attr[has](key)) {
41                 if (key.substring(0, 6) == "xlink:") {
42                     el.setAttributeNS(xlink, key.substring(6), Str(attr[key]));
43                 } else {
44                     el.setAttribute(key, Str(attr[key]));
45                 }
46             }
47         } else {
48             el = R._g.doc.createElementNS("http://www.w3.org/2000/svg", el);
49             el.style && (el.style.webkitTapHighlightColor = "rgba(0,0,0,0)");
50         }
51         return el;
52     },
53     gradients = {},
54     rgGrad = /^url\(#(.*)\)$/,
55     removeGradientFill = function (node, paper) {
56         var oid = node.getAttribute("fill");
57         oid = oid && oid.match(rgGrad);
58         if (oid && !--gradients[oid[1]]) {
59             delete gradients[oid[1]];
60             paper.defs.removeChild(R._g.doc.getElementById(oid[1]));
61         }
62     },
63     addGradientFill = function (element, gradient) {
64         var type = "linear",
65             id = element.id + gradient,
66             fx = .5, fy = .5,
67             o = element.node,
68             SVG = element.paper,
69             s = o.style,
70             el = R._g.doc.getElementById(id);
71         if (!el) {
72             gradient = Str(gradient).replace(R._radial_gradient, function (all, _fx, _fy) {
73                 type = "radial";
74                 if (_fx && _fy) {
75                     fx = toFloat(_fx);
76                     fy = toFloat(_fy);
77                     var dir = ((fy > .5) * 2 - 1);
78                     pow(fx - .5, 2) + pow(fy - .5, 2) > .25 &&
79                         (fy = math.sqrt(.25 - pow(fx - .5, 2)) * dir + .5) &&
80                         fy != .5 &&
81                         (fy = fy.toFixed(5) - 1e-5 * dir);
82                 }
83                 return E;
84             });
85             gradient = gradient.split(/\s*\-\s*/);
86             if (type == "linear") {
87                 var angle = gradient.shift();
88                 angle = -toFloat(angle);
89                 if (isNaN(angle)) {
90                     return null;
91                 }
92                 var vector = [0, 0, math.cos(R.rad(angle)), math.sin(R.rad(angle))],
93                     max = 1 / (mmax(abs(vector[2]), abs(vector[3])) || 1);
94                 vector[2] *= max;
95                 vector[3] *= max;
96                 if (vector[2] < 0) {
97                     vector[0] = -vector[2];
98                     vector[2] = 0;
99                 }
100                 if (vector[3] < 0) {
101                     vector[1] = -vector[3];
102                     vector[3] = 0;
103                 }
104             }
105             var dots = R._parseDots(gradient);
106             if (!dots) {
107                 return null;
108             }
109             if (element.gradient) {
110                 SVG.defs.removeChild(element.gradient);
111                 delete element.gradient;
112             }
113
114             id = id.replace(/[\(\)\s,\xb0#]/g, "-");
115             el = $(type + "Gradient", {id: id});
116             element.gradient = el;
117             $(el, type == "radial" ? {
118                 fx: fx,
119                 fy: fy
120             } : {
121                 x1: vector[0],
122                 y1: vector[1],
123                 x2: vector[2],
124                 y2: vector[3],
125                 gradientTransform: element.matrix.invert()
126             });
127             SVG.defs.appendChild(el);
128             for (var i = 0, ii = dots.length; i < ii; i++) {
129                 el.appendChild($("stop", {
130                     offset: dots[i].offset ? dots[i].offset : i ? "100%" : "0%",
131                     "stop-color": dots[i].color || "#fff"
132                 }));
133             }
134         }
135         $(o, {
136             fill: "url(#" + id + ")",
137             opacity: 1,
138             "fill-opacity": 1
139         });
140         s.fill = E;
141         s.opacity = 1;
142         s.fillOpacity = 1;
143         return 1;
144     },
145     updatePosition = function (o) {
146         var bbox = o.getBBox(1);
147         $(o.pattern, {patternTransform: o.matrix.invert() + " translate(" + bbox.x + "," + bbox.y + ")"});
148     },
149     addArrow = function (o, value, isEnd) {
150         if (o.type == "path") {
151             var values = Str(value).toLowerCase().split("-"),
152                 p = o.paper,
153                 se = isEnd ? "end" : "start",
154                 node = o.node,
155                 attrs = o.attrs,
156                 stroke = attrs["stroke-width"],
157                 i = values.length,
158                 type = "classic",
159                 from,
160                 to,
161                 dx,
162                 refX,
163                 attr,
164                 w = 3,
165                 h = 3,
166                 t = 5;
167             while (i--) {
168                 switch (values[i]) {
169                     case "block":
170                     case "classic":
171                     case "oval":
172                     case "diamond":
173                     case "open":
174                     case "none":
175                         type = values[i];
176                         break;
177                     case "wide": h = 5; break;
178                     case "narrow": h = 2; break;
179                     case "long": w = 5; break;
180                     case "short": w = 2; break;
181                 }
182             }
183             if (type == "open") {
184                 w += 2;
185                 h += 2;
186                 t += 2;
187                 dx = 1;
188                 refX = isEnd ? 4 : 1;
189                 attr = {
190                     fill: "none",
191                     stroke: attrs.stroke
192                 };
193             } else {
194                 refX = dx = w / 2;
195                 attr = {
196                     fill: attrs.stroke,
197                     stroke: "none"
198                 };
199             }
200             if (o._.arrows) {
201                 if (isEnd) {
202                     o._.arrows.endPath && markerCounter[o._.arrows.endPath]--;
203                     o._.arrows.endMarker && markerCounter[o._.arrows.endMarker]--;
204                 } else {
205                     o._.arrows.startPath && markerCounter[o._.arrows.startPath]--;
206                     o._.arrows.startMarker && markerCounter[o._.arrows.startMarker]--;
207                 }
208             } else {
209                 o._.arrows = {};
210             }
211             if (type != "none") {
212                 var pathId = "raphael-marker-" + type,
213                     markerId = "raphael-marker-" + se + type + w + h;
214                 if (!R._g.doc.getElementById(pathId)) {
215                     p.defs.appendChild($($("path"), {
216                         "stroke-linecap": "round",
217                         d: markers[type],
218                         id: pathId
219                     }));
220                     markerCounter[pathId] = 1;
221                 } else {
222                     markerCounter[pathId]++;
223                 }
224                 var marker = R._g.doc.getElementById(markerId),
225                     use;
226                 if (!marker) {
227                     marker = $($("marker"), {
228                         id: markerId,
229                         markerHeight: h,
230                         markerWidth: w,
231                         orient: "auto",
232                         refX: refX,
233                         refY: h / 2
234                     });
235                     use = $($("use"), {
236                         "xlink:href": "#" + pathId,
237                         transform: (isEnd ? " rotate(180 " + w / 2 + " " + h / 2 + ") " : S) + "scale(" + w / t + "," + h / t + ")",
238                         "stroke-width": 1 / ((w / t + h / t) / 2)
239                     });
240                     marker.appendChild(use);
241                     p.defs.appendChild(marker);
242                     markerCounter[markerId] = 1;
243                 } else {
244                     markerCounter[markerId]++;
245                     use = marker.getElementsByTagName("use")[0];
246                 }
247                 $(use, attr);
248                 var delta = dx * (type != "diamond" && type != "oval");
249                 if (isEnd) {
250                     from = o._.arrows.startdx * stroke || 0;
251                     to = R.getTotalLength(attrs.path) - delta * stroke;
252                 } else {
253                     from = delta * stroke;
254                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
255                 }
256                 attr = {};
257                 attr["marker-" + se] = "url(#" + markerId + ")";
258                 if (to || from) {
259                     attr.d = Raphael.getSubpath(attrs.path, from, to);
260                 }
261                 $(node, attr);
262                 o._.arrows[se + "Path"] = pathId;
263                 o._.arrows[se + "Marker"] = markerId;
264                 o._.arrows[se + "dx"] = delta;
265                 o._.arrows[se + "Type"] = type;
266                 o._.arrows[se + "String"] = value;
267             } else {
268                 if (isEnd) {
269                     from = o._.arrows.startdx * stroke || 0;
270                     to = R.getTotalLength(attrs.path) - from;
271                 } else {
272                     from = 0;
273                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
274                 }
275                 o._.arrows[se + "Path"] && $(node, {d: Raphael.getSubpath(attrs.path, from, to)});
276                 delete o._.arrows[se + "Path"];
277                 delete o._.arrows[se + "Marker"];
278                 delete o._.arrows[se + "dx"];
279                 delete o._.arrows[se + "Type"];
280                 delete o._.arrows[se + "String"];
281             }
282             for (attr in markerCounter) if (markerCounter[has](attr) && !markerCounter[attr]) {
283                 var item = R._g.doc.getElementById(attr);
284                 item && item.parentNode.removeChild(item);
285             }
286         }
287     },
288     setFillAndStroke = function (o, params) {
289         var dasharray = {
290                 "": [0],
291                 "none": [0],
292                 "-": [3, 1],
293                 ".": [1, 1],
294                 "-.": [3, 1, 1, 1],
295                 "-..": [3, 1, 1, 1, 1, 1],
296                 ". ": [1, 3],
297                 "- ": [4, 3],
298                 "--": [8, 3],
299                 "- .": [4, 3, 1, 3],
300                 "--.": [8, 3, 1, 3],
301                 "--..": [8, 3, 1, 3, 1, 3]
302             },
303             node = o.node,
304             attrs = o.attrs,
305             addDashes = function (o, value) {
306                 value = dasharray[Str(value).toLowerCase()];
307                 if (value) {
308                     var width = o.attrs["stroke-width"] || "1",
309                         butt = {round: width, square: width, butt: 0}[o.attrs["stroke-linecap"] || params["stroke-linecap"]] || 0,
310                         dashes = [],
311                         i = value.length;
312                     while (i--) {
313                         dashes[i] = value[i] * width + ((i % 2) ? 1 : -1) * butt;
314                     }
315                     $(node, {"stroke-dasharray": dashes.join(",")});
316                 }
317             };
318         for (var att in params) {
319             if (params[has](att)) {
320                 if (!R._availableAttrs[has](att)) {
321                     continue;
322                 }
323                 var value = params[att];
324                 attrs[att] = value;
325                 switch (att) {
326                     case "blur":
327                         o.blur(value);
328                         break;
329                     case "href":
330                     case "title":
331                     case "target":
332                         var pn = node.parentNode;
333                         if (pn.tagName.toLowerCase() != "a") {
334                             var hl = $("a");
335                             pn.insertBefore(hl, node);
336                             hl.appendChild(node);
337                             pn = hl;
338                         }
339                         if (att == "target" && value == "blank") {
340                             pn.setAttributeNS(xlink, "show", "new");
341                         } else {
342                             pn.setAttributeNS(xlink, att, value);
343                         }
344                         break;
345                     case "cursor":
346                         node.style.cursor = value;
347                         break;
348                     case "transform":
349                         o.transform(value);
350                         break;
351                     case "arrow-start":
352                         addArrow(o, value);
353                         break;
354                     case "arrow-end":
355                         addArrow(o, value, 1);
356                         break;
357                     case "clip-rect":
358                         var rect = Str(value).split(separator);
359                         if (rect.length == 4) {
360                             o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode);
361                             var el = $("clipPath"),
362                                 rc = $("rect");
363                             el.id = R._createUUID();
364                             $(rc, {
365                                 x: rect[0],
366                                 y: rect[1],
367                                 width: rect[2],
368                                 height: rect[3]
369                             });
370                             el.appendChild(rc);
371                             o.paper.defs.appendChild(el);
372                             $(node, {"clip-path": "url(#" + el.id + ")"});
373                             o.clip = rc;
374                         }
375                         if (!value) {
376                             var clip = R._g.doc.getElementById(node.getAttribute("clip-path").replace(/(^url\(#|\)$)/g, E));
377                             clip && clip.parentNode.removeChild(clip);
378                             $(node, {"clip-path": E});
379                             delete o.clip;
380                         }
381                     break;
382                     case "path":
383                         if (o.type == "path") {
384                             $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
385                             o._.dirty = 1;
386                             if (o._.arrows) {
387                                 "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
388                                 "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
389                             }
390                         }
391                         break;
392                     case "width":
393                         node.setAttribute(att, value);
394                         o._.dirty = 1;
395                         if (attrs.fx) {
396                             att = "x";
397                             value = attrs.x;
398                         } else {
399                             break;
400                         }
401                     case "x":
402                         if (attrs.fx) {
403                             value = -attrs.x - (attrs.width || 0);
404                         }
405                     case "rx":
406                         if (att == "rx" && o.type == "rect") {
407                             break;
408                         }
409                     case "cx":
410                         node.setAttribute(att, value);
411                         o.pattern && updatePosition(o);
412                         o._.dirty = 1;
413                         break;
414                     case "height":
415                         node.setAttribute(att, value);
416                         o._.dirty = 1;
417                         if (attrs.fy) {
418                             att = "y";
419                             value = attrs.y;
420                         } else {
421                             break;
422                         }
423                     case "y":
424                         if (attrs.fy) {
425                             value = -attrs.y - (attrs.height || 0);
426                         }
427                     case "ry":
428                         if (att == "ry" && o.type == "rect") {
429                             break;
430                         }
431                     case "cy":
432                         node.setAttribute(att, value);
433                         o.pattern && updatePosition(o);
434                         o._.dirty = 1;
435                         break;
436                     case "r":
437                         if (o.type == "rect") {
438                             $(node, {rx: value, ry: value});
439                         } else {
440                             node.setAttribute(att, value);
441                         }
442                         o._.dirty = 1;
443                         break;
444                     case "src":
445                         if (o.type == "image") {
446                             node.setAttributeNS(xlink, "href", value);
447                         }
448                         break;
449                     case "stroke-width":
450                         if (o._.sx != 1 || o._.sy != 1) {
451                             value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
452                         }
453                         if (o.paper._vbSize) {
454                             value *= o.paper._vbSize;
455                         }
456                         node.setAttribute(att, value);
457                         if (attrs["stroke-dasharray"]) {
458                             addDashes(o, attrs["stroke-dasharray"]);
459                         }
460                         if (o._.arrows) {
461                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
462                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
463                         }
464                         break;
465                     case "stroke-dasharray":
466                         addDashes(o, value);
467                         break;
468                     case "fill":
469                         var isURL = Str(value).match(R._ISURL);
470                         if (isURL) {
471                             el = $("pattern");
472                             var ig = $("image");
473                             el.id = R._createUUID();
474                             $(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1});
475                             $(ig, {x: 0, y: 0, "xlink:href": isURL[1]});
476                             el.appendChild(ig);
477
478                             (function (el) {
479                                 R._preload(isURL[1], function () {
480                                     var w = this.offsetWidth,
481                                         h = this.offsetHeight;
482                                     $(el, {width: w, height: h});
483                                     $(ig, {width: w, height: h});
484                                     o.paper.safari();
485                                 });
486                             })(el);
487                             o.paper.defs.appendChild(el);
488                             node.style.fill = "url(#" + el.id + ")";
489                             $(node, {fill: "url(#" + el.id + ")"});
490                             o.pattern = el;
491                             o.pattern && updatePosition(o);
492                             break;
493                         }
494                         var clr = R.getRGB(value);
495                         if (!clr.error) {
496                             delete params.gradient;
497                             delete attrs.gradient;
498                             !R.is(attrs.opacity, "undefined") &&
499                                 R.is(params.opacity, "undefined") &&
500                                 $(node, {opacity: attrs.opacity});
501                             !R.is(attrs["fill-opacity"], "undefined") &&
502                                 R.is(params["fill-opacity"], "undefined") &&
503                                 $(node, {"fill-opacity": attrs["fill-opacity"]});
504                         } else if ((o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value)) {
505                             if ("opacity" in attrs || "fill-opacity" in attrs) {
506                                 var gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
507                                 if (gradient) {
508                                     var stops = gradient.getElementsByTagName("stop");
509                                     $(stops[stops.length - 1], {"stop-opacity": ("opacity" in attrs ? attrs.opacity : 1) * ("fill-opacity" in attrs ? attrs["fill-opacity"] : 1)});
510                                 }
511                             }
512                             attrs.gradient = value;
513                             attrs.fill = "none";
514                             break;
515                         }
516                         clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
517                     case "stroke":
518                         clr = R.getRGB(value);
519                         node.setAttribute(att, clr.hex);
520                         att == "stroke" && clr[has]("opacity") && $(node, {"stroke-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
521                         if (att == "stroke" && o._.arrows) {
522                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
523                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
524                         }
525                         break;
526                     case "gradient":
527                         (o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value);
528                         break;
529                     case "opacity":
530                         if (attrs.gradient && !attrs[has]("stroke-opacity")) {
531                             $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
532                         }
533                         // fall
534                     case "fill-opacity":
535                         if (attrs.gradient) {
536                             gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
537                             if (gradient) {
538                                 stops = gradient.getElementsByTagName("stop");
539                                 $(stops[stops.length - 1], {"stop-opacity": value});
540                             }
541                             break;
542                         }
543                     default:
544                         att == "font-size" && (value = toInt(value, 10) + "px");
545                         var cssrule = att.replace(/(\-.)/g, function (w) {
546                             return w.substring(1).toUpperCase();
547                         });
548                         node.style[cssrule] = value;
549                         o._.dirty = 1;
550                         node.setAttribute(att, value);
551                         break;
552                 }
553             }
554         }
555
556         tuneText(o, params);
557     },
558     leading = 1.2,
559     tuneText = function (el, params) {
560         if (el.type != "text" || !(params[has]("text") || params[has]("font") || params[has]("font-size") || params[has]("x") || params[has]("y"))) {
561             return;
562         }
563         var a = el.attrs,
564             node = el.node,
565             fontSize = node.firstChild ? toInt(R._g.doc.defaultView.getComputedStyle(node.firstChild, E).getPropertyValue("font-size"), 10) : 10;
566
567         if (params[has]("text")) {
568             a.text = params.text;
569             while (node.firstChild) {
570                 node.removeChild(node.firstChild);
571             }
572             var texts = Str(params.text).split("\n"),
573                 tspans = [],
574                 tspan;
575             for (var i = 0, ii = texts.length; i < ii; i++) {
576                 tspan = $("tspan");
577                 i && $(tspan, {dy: fontSize * leading, x: a.x});
578                 tspan.appendChild(R._g.doc.createTextNode(texts[i]));
579                 node.appendChild(tspan);
580                 tspans[i] = tspan;
581             }
582         } else {
583             tspans = node.getElementsByTagName("tspan");
584             for (i = 0, ii = tspans.length; i < ii; i++) if (i) {
585                 $(tspans[i], {dy: fontSize * leading, x: a.x});
586             } else {
587                 $(tspans[0], {dy: 0});
588             }
589         }
590         $(node, {x: a.x, y: a.y});
591         el._.dirty = 1;
592         var bb = el._getBBox(),
593             dif = a.y - (bb.y + bb.height / 2);
594         dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
595     },
596     Element = function (node, svg) {
597         var X = 0,
598             Y = 0;
599         /*\
600          * Element.node
601          [ property (object) ]
602          **
603          * Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
604          > Usage
605          | // draw a circle at coordinate 10,10 with radius of 10
606          | var c = paper.circle(10, 10, 10);
607          | c.node.onclick = function () {
608          |     c.attr("fill", "red");
609          | };
610         \*/
611         this[0] = this.node = node;
612         /*\
613          * Element.raphael
614          [ property (object) ]
615          **
616          * Internal reference to @Raphael object. In case it is not available.
617          > Usage
618          | Raphael.el.red = function () {
619          |     var hsb = this.paper.raphael.rgb2hsb(this.attr("fill"));
620          |     hsb.h = 1;
621          |     this.attr({fill: this.paper.raphael.hsb2rgb(hsb).hex});
622          | }
623         \*/
624         node.raphael = true;
625         /*\
626          * Element.id
627          [ property (number) ]
628          **
629          * Unique id of the element. Especially usesful when you want to listen to events of the element, 
630          * because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
631         \*/
632         this.id = R._oid++;
633         node.raphaelid = this.id;
634         this.matrix = R.matrix();
635         this.realPath = null;
636         /*\
637          * Element.paper
638          [ property (object) ]
639          **
640          * Internal reference to “paper” where object drawn. Mainly for use in plugins and element extensions.
641          > Usage
642          | Raphael.el.cross = function () {
643          |     this.attr({fill: "red"});
644          |     this.paper.path("M10,10L50,50M50,10L10,50")
645          |         .attr({stroke: "red"});
646          | }
647         \*/
648         this.paper = svg;
649         this.attrs = this.attrs || {};
650         this._ = {
651             transform: [],
652             sx: 1,
653             sy: 1,
654             deg: 0,
655             dx: 0,
656             dy: 0,
657             dirty: 1
658         };
659         !svg.bottom && (svg.bottom = this);
660         /*\
661          * Element.prev
662          [ property (object) ]
663          **
664          * Reference to the previous element in the hierarchy.
665         \*/
666         this.prev = svg.top;
667         svg.top && (svg.top.next = this);
668         svg.top = this;
669         /*\
670          * Element.next
671          [ property (object) ]
672          **
673          * Reference to the next element in the hierarchy.
674         \*/
675         this.next = null;
676     },
677     elproto = R.el;
678
679     Element.prototype = elproto;
680     elproto.constructor = Element;
681
682     R._engine.path = function (pathString, SVG) {
683         var el = $("path");
684         SVG.canvas && SVG.canvas.appendChild(el);
685         var p = new Element(el, SVG);
686         p.type = "path";
687         setFillAndStroke(p, {fill: "none", stroke: "#000", path: pathString});
688         return p;
689     };
690     /*\
691      * Element.rotate
692      [ method ]
693      **
694      * Adds rotation by given angle around given point to the list of
695      * transformations of the element.
696      > Parameters
697      - deg (number) angle in degrees
698      - cx (number) #optional x coordinate of the centre of rotation
699      - cy (number) #optional y coordinate of the centre of rotation
700      * If cx & cy aren’t specified centre of the shape is used as a point of rotation.
701      = (object) @Element
702     \*/
703     elproto.rotate = function (deg, cx, cy) {
704         if (this.removed) {
705             return this;
706         }
707         deg = Str(deg).split(separator);
708         if (deg.length - 1) {
709             cx = toFloat(deg[1]);
710             cy = toFloat(deg[2]);
711         }
712         deg = toFloat(deg[0]);
713         (cy == null) && (cx = cy);
714         if (cx == null || cy == null) {
715             var bbox = this.getBBox(1);
716             cx = bbox.x + bbox.width / 2;
717             cy = bbox.y + bbox.height / 2;
718         }
719         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
720         return this;
721     };
722     /*\
723      * Element.scale
724      [ method ]
725      **
726      * Adds scale by given amount relative to given point to the list of
727      * transformations of the element.
728      > Parameters
729      - sx (number) horisontal scale amount
730      - sy (number) vertical scale amount
731      - cx (number) #optional x coordinate of the centre of scale
732      - cy (number) #optional y coordinate of the centre of scale
733      * If cx & cy aren’t specified centre of the shape is used instead.
734      = (object) @Element
735     \*/
736     elproto.scale = function (sx, sy, cx, cy) {
737         if (this.removed) {
738             return this;
739         }
740         sx = Str(sx).split(separator);
741         if (sx.length - 1) {
742             sy = toFloat(sx[1]);
743             cx = toFloat(sx[2]);
744             cy = toFloat(sx[3]);
745         }
746         sx = toFloat(sx[0]);
747         (sy == null) && (sy = sx);
748         (cy == null) && (cx = cy);
749         if (cx == null || cy == null) {
750             var bbox = this.getBBox(1);
751         }
752         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
753         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
754         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
755         return this;
756     };
757     /*\
758      * Element.translate
759      [ method ]
760      **
761      * Adds translation by given amount to the list of transformations of the element.
762      > Parameters
763      - dx (number) horisontal shift
764      - dy (number) vertical shift
765      = (object) @Element
766     \*/
767     elproto.translate = function (dx, dy) {
768         if (this.removed) {
769             return this;
770         }
771         dx = Str(dx).split(separator);
772         if (dx.length - 1) {
773             dy = toFloat(dx[1]);
774         }
775         dx = toFloat(dx[0]) || 0;
776         dy = +dy || 0;
777         this.transform(this._.transform.concat([["t", dx, dy]]));
778         return this;
779     };
780     /*\
781      * Element.transform
782      [ method ]
783      **
784      * Adds transformation to the element which is separate to other attributes,
785      * i.e. translation doesn’t change `x` or `y` of the rectange. The format
786      * of transformation string is similar to the path string syntax:
787      | "t100,100r30,100,100s2,2,100,100r45s1.5"
788      * Each letter is a command. There are four commands: `t` is for translate, `r` is for rotate, `s` is for
789      * scale and `m` is for matrix.
790      *
791      * So, the example line above could be read like “translate by 100, 100; rotate 30° around 100, 100; scale twice around 100, 100;
792      * rotate 45° around centre; scale 1.5 times relative to centre”. As you can see rotate and scale commands have origin
793      * coordinates as optional parameters, the default is the centre point of the element.
794      * Matrix accepts six parameters.
795      > Usage
796      | var el = paper.rect(10, 20, 300, 200);
797      | // translate 100, 100, rotate 45°, translate -100, 0
798      | el.transform("t100,100r45t-100,0");
799      | // if you want you can append or prepend transformations
800      | el.transform("...t50,50");
801      | el.transform("s2...");
802      | // or even wrap
803      | el.transform("t50,50...t-50-50");
804      | // to reset transformation call method with empty string
805      | el.transform("");
806      | // to get current value call it without parameters
807      | console.log(el.transform());
808      > Parameters
809      - tstr (string) #optional transformation string
810      * If tstr isn’t specified
811      = (string) current transformation string
812      * else
813      = (object) @Element
814     \*/
815     elproto.transform = function (tstr) {
816         var _ = this._;
817         if (tstr == null) {
818             return _.transform;
819         }
820         R._extractTransform(this, tstr);
821
822         this.clip && $(this.clip, {transform: this.matrix.invert()});
823         this.pattern && updatePosition(this);
824         this.node && $(this.node, {transform: this.matrix});
825     
826         if (_.sx != 1 || _.sy != 1) {
827             var sw = this.attrs[has]("stroke-width") ? this.attrs["stroke-width"] : 1;
828             this.attr({"stroke-width": sw});
829         }
830
831         return this;
832     };
833     /*\
834      * Element.hide
835      [ method ]
836      **
837      * Makes element invisible. See @Element.show.
838      = (object) @Element
839     \*/
840     elproto.hide = function () {
841         !this.removed && this.paper.safari(this.node.style.display = "none");
842         return this;
843     };
844     /*\
845      * Element.show
846      [ method ]
847      **
848      * Makes element visible. See @Element.hide.
849      = (object) @Element
850     \*/
851     elproto.show = function () {
852         !this.removed && this.paper.safari(this.node.style.display = "");
853         return this;
854     };
855     /*\
856      * Element.remove
857      [ method ]
858      **
859      * Removes element form the paper.
860     \*/
861     elproto.remove = function () {
862         if (this.removed) {
863             return;
864         }
865         eve.unbind("*.*." + this.id);
866         R._tear(this, this.paper);
867         this.node.parentNode.removeChild(this.node);
868         for (var i in this) {
869             delete this[i];
870         }
871         this.removed = true;
872     };
873     elproto._getBBox = function () {
874         if (this.node.style.display == "none") {
875             this.show();
876             var hide = true;
877         }
878         var bbox = {};
879         try {
880             bbox = this.node.getBBox();
881         } catch(e) {
882             // Firefox 3.0.x plays badly here
883         } finally {
884             bbox = bbox || {};
885         }
886         hide && this.hide();
887         return bbox;
888     };
889     /*\
890      * Element.attr
891      [ method ]
892      **
893      * Sets the attributes of the element.
894      > Parameters
895      - attrName (string) attribute’s name
896      - value (string) value
897      * or
898      - params (object) object of name/value pairs
899      * or
900      - attrName (string) attribute’s name
901      * or
902      - attrNames (array) in this case method returns array of current values for given attribute names
903      = (object) @Element if attrsName & value or params are passed in.
904      = (...) value of the attribute if only attrsName is passed in.
905      = (array) array of values of the attribute if attrsNames is passed in.
906      = (object) object of attributes if nothing is passed in.
907      > Possible parameters
908      # <p>Please refer to the <a href="http://www.w3.org/TR/SVG/" title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
909      o arrow-end (string) arrowhead on the end of the path. The format for string is `<type>[-<width>[-<length>]]`. Possible types: `classic`, `block`, `open`, `oval`, `diamond`, `none`, width: `wide`, `narrow`, `midium`, length: `long`, `short`, `midium`.
910      o clip-rect (string) comma or space separated values: x, y, width and height
911      o cursor (string) CSS type of the cursor
912      o cx (number)
913      o cy (number)
914      o fill (string) colour, gradient or image
915      o fill-opacity (number)
916      o font (string)
917      o font-family (string)
918      o font-size (number) font size in pixels
919      o font-weight (string)
920      o height (number)
921      o href (string) URL, if specified element behaves as hyperlink
922      o opacity (number)
923      o path (string) SVG path string format
924      o r (number)
925      o rx (number)
926      o ry (number)
927      o src (string) image URL, only works for @Element.image element
928      o stroke (string) stroke colour
929      o stroke-dasharray (string) [“”, “`-`”, “`.`”, “`-.`”, “`-..`”, “`. `”, “`- `”, “`--`”, “`- .`”, “`--.`”, “`--..`”]
930      o stroke-linecap (string) [“`butt`”, “`square`”, “`round`”]
931      o stroke-linejoin (string) [“`bevel`”, “`round`”, “`miter`”]
932      o stroke-miterlimit (number)
933      o stroke-opacity (number)
934      o stroke-width (number) stroke width in pixels, default is '1'
935      o target (string) used with href
936      o text (string) contents of the text element. Use `\n` for multiline text
937      o text-anchor (string) [“`start`”, “`middle`”, “`end`”], default is “`middle`”
938      o title (string) will create tooltip with a given text
939      o transform (string) see @Element.transform
940      o width (number)
941      o x (number)
942      o y (number)
943      > Gradients
944      * Linear gradient format: “`‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`90-#fff-#000`” – 90°
945      * gradient from white to black or “`0-#fff-#f00:20-#000`” – 0° gradient from white via red (at 20%) to black.
946      *
947      * radial gradient: “`r[(‹fx›, ‹fy›)]‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`r#fff-#000`” –
948      * gradient from white to black or “`r(0.25, 0.75)#fff-#000`” – gradient from white to black with focus point
949      * at 0.25, 0.75. Focus point coordinates are in 0..1 range. Radial gradients can only be applied to circles and ellipses.
950      > Path String
951      # <p>Please refer to <a href="http://www.w3.org/TR/SVG/paths.html#PathData" title="Details of a path’s data attribute’s format are described in the SVG specification.">SVG documentation regarding path string</a>. Raphaël fully supports it.</p>
952      > Colour Parsing
953      # <ul>
954      #     <li>Colour name (“<code>red</code>”, “<code>green</code>”, “<code>cornflowerblue</code>”, etc)</li>
955      #     <li>#••• — shortened HTML colour: (“<code>#000</code>”, “<code>#fc0</code>”, etc)</li>
956      #     <li>#•••••• — full length HTML colour: (“<code>#000000</code>”, “<code>#bd2300</code>”)</li>
957      #     <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<code>rgb(200,&nbsp;100,&nbsp;0)</code>”)</li>
958      #     <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<code>rgb(100%,&nbsp;175%,&nbsp;0%)</code>”)</li>
959      #     <li>rgba(•••, •••, •••, •••) — red, green and blue channels’ values: (“<code>rgba(200,&nbsp;100,&nbsp;0, .5)</code>”)</li>
960      #     <li>rgba(•••%, •••%, •••%, •••%) — same as above, but in %: (“<code>rgba(100%,&nbsp;175%,&nbsp;0%, 50%)</code>”)</li>
961      #     <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<code>hsb(0.5,&nbsp;0.25,&nbsp;1)</code>”)</li>
962      #     <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
963      #     <li>hsba(•••, •••, •••, •••) — same as above, but with opacity</li>
964      #     <li>hsl(•••, •••, •••) — almost the same as hsb, see <a href="http://en.wikipedia.org/wiki/HSL_and_HSV" title="HSL and HSV - Wikipedia, the free encyclopedia">Wikipedia page</a></li>
965      #     <li>hsl(•••%, •••%, •••%) — same as above, but in %</li>
966      #     <li>hsla(•••, •••, •••) — same as above, but with opacity</li>
967      #     <li>Optionally for hsb and hsl you could specify hue as a degree: “<code>hsl(240deg,&nbsp;1,&nbsp;.5)</code>” or, if you want to go fancy, “<code>hsl(240°,&nbsp;1,&nbsp;.5)</code>”</li>
968      # </ul>
969     \*/
970     elproto.attr = function (name, value) {
971         if (this.removed) {
972             return this;
973         }
974         if (name == null) {
975             var res = {};
976             for (var a in this.attrs) if (this.attrs[has](a)) {
977                 res[a] = this.attrs[a];
978             }
979             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
980             res.transform = this._.transform;
981             return res;
982         }
983         if (value == null && R.is(name, "string")) {
984             if (name == "fill" && this.attrs.fill == "none" && this.attrs.gradient) {
985                 return this.attrs.gradient;
986             }
987             if (name == "transform") {
988                 return this._.transform;
989             }
990             var names = name.split(separator),
991                 out = {};
992             for (var i = 0, ii = names.length; i < ii; i++) {
993                 name = names[i];
994                 if (name in this.attrs) {
995                     out[name] = this.attrs[name];
996                 } else if (R.is(this.paper.customAttributes[name], "function")) {
997                     out[name] = this.paper.customAttributes[name].def;
998                 } else {
999                     out[name] = R._availableAttrs[name];
1000                 }
1001             }
1002             return ii - 1 ? out : out[names[0]];
1003         }
1004         if (value == null && R.is(name, "array")) {
1005             out = {};
1006             for (i = 0, ii = name.length; i < ii; i++) {
1007                 out[name[i]] = this.attr(name[i]);
1008             }
1009             return out;
1010         }
1011         if (value != null) {
1012             var params = {};
1013             params[name] = value;
1014         } else if (name != null && R.is(name, "object")) {
1015             params = name;
1016         }
1017         for (var key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
1018             var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
1019             this.attrs[key] = params[key];
1020             for (var subkey in par) if (par[has](subkey)) {
1021                 params[subkey] = par[subkey];
1022             }
1023         }
1024         setFillAndStroke(this, params);
1025         return this;
1026     };
1027     /*\
1028      * Element.toFront
1029      [ method ]
1030      **
1031      * Moves the element so it is the closest to the viewer’s eyes, on top of other elements.
1032      = (object) @Element
1033     \*/
1034     elproto.toFront = function () {
1035         if (this.removed) {
1036             return this;
1037         }
1038         this.node.parentNode.appendChild(this.node);
1039         var svg = this.paper;
1040         svg.top != this && R._tofront(this, svg);
1041         return this;
1042     };
1043     /*\
1044      * Element.toBack
1045      [ method ]
1046      **
1047      * Moves the element so it is the furthest from the viewer’s eyes, behind other elements.
1048      = (object) @Element
1049     \*/
1050     elproto.toBack = function () {
1051         if (this.removed) {
1052             return this;
1053         }
1054         if (this.node.parentNode.firstChild != this.node) {
1055             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
1056             R._toback(this, this.paper);
1057             var svg = this.paper;
1058         }
1059         return this;
1060     };
1061     /*\
1062      * Element.insertAfter
1063      [ method ]
1064      **
1065      * Inserts current object after the given one.
1066      = (object) @Element
1067     \*/
1068     elproto.insertAfter = function (element) {
1069         if (this.removed) {
1070             return this;
1071         }
1072         var node = element.node || element[element.length - 1].node;
1073         if (node.nextSibling) {
1074             node.parentNode.insertBefore(this.node, node.nextSibling);
1075         } else {
1076             node.parentNode.appendChild(this.node);
1077         }
1078         R._insertafter(this, element, this.paper);
1079         return this;
1080     };
1081     /*\
1082      * Element.insertBefore
1083      [ method ]
1084      **
1085      * Inserts current object before the given one.
1086      = (object) @Element
1087     \*/
1088     elproto.insertBefore = function (element) {
1089         if (this.removed) {
1090             return this;
1091         }
1092         var node = element.node || element[0].node;
1093         node.parentNode.insertBefore(this.node, node);
1094         R._insertbefore(this, element, this.paper);
1095         return this;
1096     };
1097     elproto.blur = function (size) {
1098         // Experimental. No Safari support. Use it on your own risk.
1099         var t = this;
1100         if (+size !== 0) {
1101             var fltr = $("filter"),
1102                 blur = $("feGaussianBlur");
1103             t.attrs.blur = size;
1104             fltr.id = R._createUUID();
1105             $(blur, {stdDeviation: +size || 1.5});
1106             fltr.appendChild(blur);
1107             t.paper.defs.appendChild(fltr);
1108             t._blur = fltr;
1109             $(t.node, {filter: "url(#" + fltr.id + ")"});
1110         } else {
1111             if (t._blur) {
1112                 t._blur.parentNode.removeChild(t._blur);
1113                 delete t._blur;
1114                 delete t.attrs.blur;
1115             }
1116             t.node.removeAttribute("filter");
1117         }
1118     };
1119     R._engine.circle = function (svg, x, y, r) {
1120         var el = $("circle");
1121         svg.canvas && svg.canvas.appendChild(el);
1122         var res = new Element(el, svg);
1123         res.attrs = {cx: x, cy: y, r: r, fill: "none", stroke: "#000"};
1124         res.type = "circle";
1125         $(el, res.attrs);
1126         return res;
1127     };
1128     R._engine.rect = function (svg, x, y, w, h, r) {
1129         var el = $("rect");
1130         svg.canvas && svg.canvas.appendChild(el);
1131         var res = new Element(el, svg);
1132         res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
1133         res.type = "rect";
1134         $(el, res.attrs);
1135         return res;
1136     };
1137     R._engine.ellipse = function (svg, x, y, rx, ry) {
1138         var el = $("ellipse");
1139         svg.canvas && svg.canvas.appendChild(el);
1140         var res = new Element(el, svg);
1141         res.attrs = {cx: x, cy: y, rx: rx, ry: ry, fill: "none", stroke: "#000"};
1142         res.type = "ellipse";
1143         $(el, res.attrs);
1144         return res;
1145     };
1146     R._engine.image = function (svg, src, x, y, w, h) {
1147         var el = $("image");
1148         $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
1149         el.setAttributeNS(xlink, "href", src);
1150         svg.canvas && svg.canvas.appendChild(el);
1151         var res = new Element(el, svg);
1152         res.attrs = {x: x, y: y, width: w, height: h, src: src};
1153         res.type = "image";
1154         return res;
1155     };
1156     R._engine.text = function (svg, x, y, text) {
1157         var el = $("text");
1158         // $(el, {x: x, y: y, "text-anchor": "middle"});
1159         svg.canvas && svg.canvas.appendChild(el);
1160         var res = new Element(el, svg);
1161         res.attrs = {
1162             x: x,
1163             y: y,
1164             "text-anchor": "middle",
1165             text: text,
1166             font: R._availableAttrs.font,
1167             stroke: "none",
1168             fill: "#000"
1169         };
1170         res.type = "text";
1171         setFillAndStroke(res, res.attrs);
1172         return res;
1173     };
1174     R._engine.setSize = function (width, height) {
1175         this.width = width || this.width;
1176         this.height = height || this.height;
1177         this.canvas.setAttribute("width", this.width);
1178         this.canvas.setAttribute("height", this.height);
1179         if (this._viewBox) {
1180             this.setViewBox.apply(this, this._viewBox);
1181         }
1182         return this;
1183     };
1184     R._engine.create = function () {
1185         var con = R._getContainer.apply(0, arguments),
1186             container = con && con.container,
1187             x = con.x,
1188             y = con.y,
1189             width = con.width,
1190             height = con.height;
1191         if (!container) {
1192             throw new Error("SVG container not found.");
1193         }
1194         var cnvs = $("svg"),
1195             css = "overflow:hidden;",
1196             isFloating;
1197         x = x || 0;
1198         y = y || 0;
1199         width = width || 512;
1200         height = height || 342;
1201         $(cnvs, {
1202             height: height,
1203             version: 1.1,
1204             width: width,
1205             xmlns: "http://www.w3.org/2000/svg"
1206         });
1207         if (container == 1) {
1208             cnvs.style.cssText = css + "position:absolute;left:" + x + "px;top:" + y + "px";
1209             R._g.doc.body.appendChild(cnvs);
1210             isFloating = 1;
1211         } else {
1212             cnvs.style.cssText = css + "position:relative";
1213             if (container.firstChild) {
1214                 container.insertBefore(cnvs, container.firstChild);
1215             } else {
1216                 container.appendChild(cnvs);
1217             }
1218         }
1219         container = new R._Paper;
1220         container.width = width;
1221         container.height = height;
1222         container.canvas = cnvs;
1223         // plugins.call(container, container, R.fn);
1224         container.clear();
1225         container._left = container._top = 0;
1226         isFloating && (container.renderfix = function () {});
1227         container.renderfix();
1228         return container;
1229     };
1230     R._engine.setViewBox = function (x, y, w, h, fit) {
1231         eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
1232         var size = mmax(w / this.width, h / this.height),
1233             top = this.top,
1234             aspectRatio = fit ? "meet" : "xMinYMin",
1235             vb,
1236             sw;
1237         if (x == null) {
1238             if (this._vbSize) {
1239                 size = 1;
1240             }
1241             delete this._vbSize;
1242             vb = "0 0 " + this.width + S + this.height;
1243         } else {
1244             this._vbSize = size;
1245             vb = x + S + y + S + w + S + h;
1246         }
1247         $(this.canvas, {
1248             viewBox: vb,
1249             preserveAspectRatio: aspectRatio
1250         });
1251         while (size && top) {
1252             sw = "stroke-width" in top.attrs ? top.attrs["stroke-width"] : 1;
1253             top.attr({"stroke-width": sw});
1254             top._.dirty = 1;
1255             top._.dirtyT = 1;
1256             top = top.prev;
1257         }
1258         this._viewBox = [x, y, w, h, !!fit];
1259         return this;
1260     };
1261     /*\
1262      * Paper.renderfix
1263      [ method ]
1264      **
1265      * Fixes the issue of Firefox and IE9 regarding subpixel rendering. If paper is dependant
1266      * on other elements after reflow it could shift half pixel which cause for lines to lost their crispness.
1267      * This method fixes the issue.
1268      **
1269        Special thanks to Mariusz Nowak (http://www.medikoo.com/) for this method.
1270     \*/
1271     R.prototype.renderfix = function () {
1272         var cnvs = this.canvas,
1273             s = cnvs.style,
1274             pos = cnvs.getScreenCTM(),
1275             left = -pos.e % 1,
1276             top = -pos.f % 1;
1277         if (left || top) {
1278             if (left) {
1279                 this._left = (this._left + left) % 1;
1280                 s.left = this._left + "px";
1281             }
1282             if (top) {
1283                 this._top = (this._top + top) % 1;
1284                 s.top = this._top + "px";
1285             }
1286         }
1287     };
1288     /*\
1289      * Paper.clear
1290      [ method ]
1291      **
1292      * Clears the paper, i.e. removes all the elements.
1293     \*/
1294     R.prototype.clear = function () {
1295         R.eve("clear", this);
1296         var c = this.canvas;
1297         while (c.firstChild) {
1298             c.removeChild(c.firstChild);
1299         }
1300         this.bottom = this.top = null;
1301         (this.desc = $("desc")).appendChild(R._g.doc.createTextNode("Created with Rapha\xebl " + R.version));
1302         c.appendChild(this.desc);
1303         c.appendChild(this.defs = $("defs"));
1304     };
1305     /*\
1306      * Paper.remove
1307      [ method ]
1308      **
1309      * Removes the paper from the DOM.
1310     \*/
1311     R.prototype.remove = function () {
1312         eve("remove", this);
1313         this.canvas.parentNode && this.canvas.parentNode.removeChild(this.canvas);
1314         for (var i in this) {
1315             this[i] = removed(i);
1316         }
1317     };
1318     var setproto = R.st;
1319     for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) {
1320         setproto[method] = (function (methodname) {
1321             return function () {
1322                 var arg = arguments;
1323                 return this.forEach(function (el) {
1324                     el[methodname].apply(el, arg);
1325                 });
1326             };
1327         })(method);
1328     }
1329 }(window.Raphael);