Added absolute transformation syntax support.
[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         S = " ";
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     dasharray = {
289         "": [0],
290         "none": [0],
291         "-": [3, 1],
292         ".": [1, 1],
293         "-.": [3, 1, 1, 1],
294         "-..": [3, 1, 1, 1, 1, 1],
295         ". ": [1, 3],
296         "- ": [4, 3],
297         "--": [8, 3],
298         "- .": [4, 3, 1, 3],
299         "--.": [8, 3, 1, 3],
300         "--..": [8, 3, 1, 3, 1, 3]
301     },
302     addDashes = function (o, value, params) {
303         value = dasharray[Str(value).toLowerCase()];
304         if (value) {
305             var width = o.attrs["stroke-width"] || "1",
306                 butt = {round: width, square: width, butt: 0}[o.attrs["stroke-linecap"] || params["stroke-linecap"]] || 0,
307                 dashes = [],
308                 i = value.length;
309             while (i--) {
310                 dashes[i] = value[i] * width + ((i % 2) ? 1 : -1) * butt;
311             }
312             $(o.node, {"stroke-dasharray": dashes.join(",")});
313         }
314     },
315     setFillAndStroke = function (o, params) {
316         var node = o.node,
317             attrs = o.attrs,
318             vis = node.style.visibility;
319         node.style.visibility = "hidden";
320         for (var att in params) {
321             if (params[has](att)) {
322                 if (!R._availableAttrs[has](att)) {
323                     continue;
324                 }
325                 var value = params[att];
326                 attrs[att] = value;
327                 switch (att) {
328                     case "blur":
329                         o.blur(value);
330                         break;
331                     case "href":
332                     case "title":
333                     case "target":
334                         var pn = node.parentNode;
335                         if (pn.tagName.toLowerCase() != "a") {
336                             var hl = $("a");
337                             pn.insertBefore(hl, node);
338                             hl.appendChild(node);
339                             pn = hl;
340                         }
341                         if (att == "target" && value == "blank") {
342                             pn.setAttributeNS(xlink, "show", "new");
343                         } else {
344                             pn.setAttributeNS(xlink, att, value);
345                         }
346                         break;
347                     case "cursor":
348                         node.style.cursor = value;
349                         break;
350                     case "transform":
351                         o.transform(value);
352                         break;
353                     case "arrow-start":
354                         addArrow(o, value);
355                         break;
356                     case "arrow-end":
357                         addArrow(o, value, 1);
358                         break;
359                     case "clip-rect":
360                         var rect = Str(value).split(separator);
361                         if (rect.length == 4) {
362                             o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode);
363                             var el = $("clipPath"),
364                                 rc = $("rect");
365                             el.id = R.createUUID();
366                             $(rc, {
367                                 x: rect[0],
368                                 y: rect[1],
369                                 width: rect[2],
370                                 height: rect[3]
371                             });
372                             el.appendChild(rc);
373                             o.paper.defs.appendChild(el);
374                             $(node, {"clip-path": "url(#" + el.id + ")"});
375                             o.clip = rc;
376                         }
377                         if (!value) {
378                             var clip = R._g.doc.getElementById(node.getAttribute("clip-path").replace(/(^url\(#|\)$)/g, E));
379                             clip && clip.parentNode.removeChild(clip);
380                             $(node, {"clip-path": E});
381                             delete o.clip;
382                         }
383                     break;
384                     case "path":
385                         if (o.type == "path") {
386                             $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
387                             o._.dirty = 1;
388                             if (o._.arrows) {
389                                 "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
390                                 "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
391                             }
392                         }
393                         break;
394                     case "width":
395                         node.setAttribute(att, value);
396                         o._.dirty = 1;
397                         if (attrs.fx) {
398                             att = "x";
399                             value = attrs.x;
400                         } else {
401                             break;
402                         }
403                     case "x":
404                         if (attrs.fx) {
405                             value = -attrs.x - (attrs.width || 0);
406                         }
407                     case "rx":
408                         if (att == "rx" && o.type == "rect") {
409                             break;
410                         }
411                     case "cx":
412                         node.setAttribute(att, value);
413                         o.pattern && updatePosition(o);
414                         o._.dirty = 1;
415                         break;
416                     case "height":
417                         node.setAttribute(att, value);
418                         o._.dirty = 1;
419                         if (attrs.fy) {
420                             att = "y";
421                             value = attrs.y;
422                         } else {
423                             break;
424                         }
425                     case "y":
426                         if (attrs.fy) {
427                             value = -attrs.y - (attrs.height || 0);
428                         }
429                     case "ry":
430                         if (att == "ry" && o.type == "rect") {
431                             break;
432                         }
433                     case "cy":
434                         node.setAttribute(att, value);
435                         o.pattern && updatePosition(o);
436                         o._.dirty = 1;
437                         break;
438                     case "r":
439                         if (o.type == "rect") {
440                             $(node, {rx: value, ry: value});
441                         } else {
442                             node.setAttribute(att, value);
443                         }
444                         o._.dirty = 1;
445                         break;
446                     case "src":
447                         if (o.type == "image") {
448                             node.setAttributeNS(xlink, "href", value);
449                         }
450                         break;
451                     case "stroke-width":
452                         if (o._.sx != 1 || o._.sy != 1) {
453                             value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
454                         }
455                         if (o.paper._vbSize) {
456                             value *= o.paper._vbSize;
457                         }
458                         node.setAttribute(att, value);
459                         if (attrs["stroke-dasharray"]) {
460                             addDashes(o, attrs["stroke-dasharray"], params);
461                         }
462                         if (o._.arrows) {
463                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
464                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
465                         }
466                         break;
467                     case "stroke-dasharray":
468                         addDashes(o, value, params);
469                         break;
470                     case "fill":
471                         var isURL = Str(value).match(R._ISURL);
472                         if (isURL) {
473                             el = $("pattern");
474                             var ig = $("image");
475                             el.id = R.createUUID();
476                             $(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1});
477                             $(ig, {x: 0, y: 0, "xlink:href": isURL[1]});
478                             el.appendChild(ig);
479
480                             (function (el) {
481                                 R._preload(isURL[1], function () {
482                                     var w = this.offsetWidth,
483                                         h = this.offsetHeight;
484                                     $(el, {width: w, height: h});
485                                     $(ig, {width: w, height: h});
486                                     o.paper.safari();
487                                 });
488                             })(el);
489                             o.paper.defs.appendChild(el);
490                             node.style.fill = "url(#" + el.id + ")";
491                             $(node, {fill: "url(#" + el.id + ")"});
492                             o.pattern = el;
493                             o.pattern && updatePosition(o);
494                             break;
495                         }
496                         var clr = R.getRGB(value);
497                         if (!clr.error) {
498                             delete params.gradient;
499                             delete attrs.gradient;
500                             !R.is(attrs.opacity, "undefined") &&
501                                 R.is(params.opacity, "undefined") &&
502                                 $(node, {opacity: attrs.opacity});
503                             !R.is(attrs["fill-opacity"], "undefined") &&
504                                 R.is(params["fill-opacity"], "undefined") &&
505                                 $(node, {"fill-opacity": attrs["fill-opacity"]});
506                         } else if ((o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value)) {
507                             if ("opacity" in attrs || "fill-opacity" in attrs) {
508                                 var gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
509                                 if (gradient) {
510                                     var stops = gradient.getElementsByTagName("stop");
511                                     $(stops[stops.length - 1], {"stop-opacity": ("opacity" in attrs ? attrs.opacity : 1) * ("fill-opacity" in attrs ? attrs["fill-opacity"] : 1)});
512                                 }
513                             }
514                             attrs.gradient = value;
515                             attrs.fill = "none";
516                             break;
517                         }
518                         clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
519                     case "stroke":
520                         clr = R.getRGB(value);
521                         node.setAttribute(att, clr.hex);
522                         att == "stroke" && clr[has]("opacity") && $(node, {"stroke-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
523                         if (att == "stroke" && o._.arrows) {
524                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
525                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
526                         }
527                         break;
528                     case "gradient":
529                         (o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value);
530                         break;
531                     case "opacity":
532                         if (attrs.gradient && !attrs[has]("stroke-opacity")) {
533                             $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
534                         }
535                         // fall
536                     case "fill-opacity":
537                         if (attrs.gradient) {
538                             gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
539                             if (gradient) {
540                                 stops = gradient.getElementsByTagName("stop");
541                                 $(stops[stops.length - 1], {"stop-opacity": value});
542                             }
543                             break;
544                         }
545                     default:
546                         att == "font-size" && (value = toInt(value, 10) + "px");
547                         var cssrule = att.replace(/(\-.)/g, function (w) {
548                             return w.substring(1).toUpperCase();
549                         });
550                         node.style[cssrule] = value;
551                         o._.dirty = 1;
552                         node.setAttribute(att, value);
553                         break;
554                 }
555             }
556         }
557
558         tuneText(o, params);
559         node.style.visibility = vis;
560     },
561     leading = 1.2,
562     tuneText = function (el, params) {
563         if (el.type != "text" || !(params[has]("text") || params[has]("font") || params[has]("font-size") || params[has]("x") || params[has]("y"))) {
564             return;
565         }
566         var a = el.attrs,
567             node = el.node,
568             fontSize = node.firstChild ? toInt(R._g.doc.defaultView.getComputedStyle(node.firstChild, E).getPropertyValue("font-size"), 10) : 10;
569
570         if (params[has]("text")) {
571             a.text = params.text;
572             while (node.firstChild) {
573                 node.removeChild(node.firstChild);
574             }
575             var texts = Str(params.text).split("\n"),
576                 tspans = [],
577                 tspan;
578             for (var i = 0, ii = texts.length; i < ii; i++) {
579                 tspan = $("tspan");
580                 i && $(tspan, {dy: fontSize * leading, x: a.x});
581                 tspan.appendChild(R._g.doc.createTextNode(texts[i]));
582                 node.appendChild(tspan);
583                 tspans[i] = tspan;
584             }
585         } else {
586             tspans = node.getElementsByTagName("tspan");
587             for (i = 0, ii = tspans.length; i < ii; i++) if (i) {
588                 $(tspans[i], {dy: fontSize * leading, x: a.x});
589             } else {
590                 $(tspans[0], {dy: 0});
591             }
592         }
593         $(node, {x: a.x, y: a.y});
594         el._.dirty = 1;
595         var bb = el._getBBox(),
596             dif = a.y - (bb.y + bb.height / 2);
597         dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
598     },
599     Element = function (node, svg) {
600         var X = 0,
601             Y = 0;
602         /*\
603          * Element.node
604          [ property (object) ]
605          **
606          * Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
607          **
608          * Note: Don’t mess with it.
609          > Usage
610          | // draw a circle at coordinate 10,10 with radius of 10
611          | var c = paper.circle(10, 10, 10);
612          | c.node.onclick = function () {
613          |     c.attr("fill", "red");
614          | };
615         \*/
616         this[0] = this.node = node;
617         /*\
618          * Element.raphael
619          [ property (object) ]
620          **
621          * Internal reference to @Raphael object. In case it is not available.
622          > Usage
623          | Raphael.el.red = function () {
624          |     var hsb = this.paper.raphael.rgb2hsb(this.attr("fill"));
625          |     hsb.h = 1;
626          |     this.attr({fill: this.paper.raphael.hsb2rgb(hsb).hex});
627          | }
628         \*/
629         node.raphael = true;
630         /*\
631          * Element.id
632          [ property (number) ]
633          **
634          * Unique id of the element. Especially usesful when you want to listen to events of the element, 
635          * because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
636         \*/
637         this.id = R._oid++;
638         node.raphaelid = this.id;
639         this.matrix = R.matrix();
640         this.realPath = null;
641         /*\
642          * Element.paper
643          [ property (object) ]
644          **
645          * Internal reference to “paper” where object drawn. Mainly for use in plugins and element extensions.
646          > Usage
647          | Raphael.el.cross = function () {
648          |     this.attr({fill: "red"});
649          |     this.paper.path("M10,10L50,50M50,10L10,50")
650          |         .attr({stroke: "red"});
651          | }
652         \*/
653         this.paper = svg;
654         this.attrs = this.attrs || {};
655         this._ = {
656             transform: [],
657             sx: 1,
658             sy: 1,
659             deg: 0,
660             dx: 0,
661             dy: 0,
662             dirty: 1
663         };
664         !svg.bottom && (svg.bottom = this);
665         /*\
666          * Element.prev
667          [ property (object) ]
668          **
669          * Reference to the previous element in the hierarchy.
670         \*/
671         this.prev = svg.top;
672         svg.top && (svg.top.next = this);
673         svg.top = this;
674         /*\
675          * Element.next
676          [ property (object) ]
677          **
678          * Reference to the next element in the hierarchy.
679         \*/
680         this.next = null;
681     },
682     elproto = R.el;
683
684     Element.prototype = elproto;
685     elproto.constructor = Element;
686
687     R._engine.path = function (pathString, SVG) {
688         var el = $("path");
689         SVG.canvas && SVG.canvas.appendChild(el);
690         var p = new Element(el, SVG);
691         p.type = "path";
692         setFillAndStroke(p, {
693             fill: "none",
694             stroke: "#000",
695             path: pathString
696         });
697         return p;
698     };
699     /*\
700      * Element.rotate
701      [ method ]
702      **
703      * Adds rotation by given angle around given point to the list of
704      * transformations of the element.
705      > Parameters
706      - deg (number) angle in degrees
707      - cx (number) #optional x coordinate of the centre of rotation
708      - cy (number) #optional y coordinate of the centre of rotation
709      * If cx & cy aren’t specified centre of the shape is used as a point of rotation.
710      = (object) @Element
711     \*/
712     elproto.rotate = function (deg, cx, cy) {
713         if (this.removed) {
714             return this;
715         }
716         deg = Str(deg).split(separator);
717         if (deg.length - 1) {
718             cx = toFloat(deg[1]);
719             cy = toFloat(deg[2]);
720         }
721         deg = toFloat(deg[0]);
722         (cy == null) && (cx = cy);
723         if (cx == null || cy == null) {
724             var bbox = this.getBBox(1);
725             cx = bbox.x + bbox.width / 2;
726             cy = bbox.y + bbox.height / 2;
727         }
728         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
729         return this;
730     };
731     /*\
732      * Element.scale
733      [ method ]
734      **
735      * Adds scale by given amount relative to given point to the list of
736      * transformations of the element.
737      > Parameters
738      - sx (number) horisontal scale amount
739      - sy (number) vertical scale amount
740      - cx (number) #optional x coordinate of the centre of scale
741      - cy (number) #optional y coordinate of the centre of scale
742      * If cx & cy aren’t specified centre of the shape is used instead.
743      = (object) @Element
744     \*/
745     elproto.scale = function (sx, sy, cx, cy) {
746         if (this.removed) {
747             return this;
748         }
749         sx = Str(sx).split(separator);
750         if (sx.length - 1) {
751             sy = toFloat(sx[1]);
752             cx = toFloat(sx[2]);
753             cy = toFloat(sx[3]);
754         }
755         sx = toFloat(sx[0]);
756         (sy == null) && (sy = sx);
757         (cy == null) && (cx = cy);
758         if (cx == null || cy == null) {
759             var bbox = this.getBBox(1);
760         }
761         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
762         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
763         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
764         return this;
765     };
766     /*\
767      * Element.translate
768      [ method ]
769      **
770      * Adds translation by given amount to the list of transformations of the element.
771      > Parameters
772      - dx (number) horisontal shift
773      - dy (number) vertical shift
774      = (object) @Element
775     \*/
776     elproto.translate = function (dx, dy) {
777         if (this.removed) {
778             return this;
779         }
780         dx = Str(dx).split(separator);
781         if (dx.length - 1) {
782             dy = toFloat(dx[1]);
783         }
784         dx = toFloat(dx[0]) || 0;
785         dy = +dy || 0;
786         this.transform(this._.transform.concat([["t", dx, dy]]));
787         return this;
788     };
789     /*\
790      * Element.transform
791      [ method ]
792      **
793      * Adds transformation to the element which is separate to other attributes,
794      * i.e. translation doesn’t change `x` or `y` of the rectange. The format
795      * of transformation string is similar to the path string syntax:
796      | "t100,100r30,100,100s2,2,100,100r45s1.5"
797      * Each letter is a command. There are four commands: `t` is for translate, `r` is for rotate, `s` is for
798      * scale and `m` is for matrix.
799      *
800      * There are also alternative “absolute” translation, rotation and scale: `T`, `R` and `S`. They will not take previous transformation into account. For example, `...T100,0` will always move element 100 px horisontally, while `...t100,0` could move it vertically if there is `r90` before. Just compare results of `r90t100,0` and `r90T100,0`.
801      *
802      * So, the example line above could be read like “translate by 100, 100; rotate 30° around 100, 100; scale twice around 100, 100;
803      * rotate 45° around centre; scale 1.5 times relative to centre”. As you can see rotate and scale commands have origin
804      * coordinates as optional parameters, the default is the centre point of the element.
805      * Matrix accepts six parameters.
806      > Usage
807      | var el = paper.rect(10, 20, 300, 200);
808      | // translate 100, 100, rotate 45°, translate -100, 0
809      | el.transform("t100,100r45t-100,0");
810      | // if you want you can append or prepend transformations
811      | el.transform("...t50,50");
812      | el.transform("s2...");
813      | // or even wrap
814      | el.transform("t50,50...t-50-50");
815      | // to reset transformation call method with empty string
816      | el.transform("");
817      | // to get current value call it without parameters
818      | console.log(el.transform());
819      > Parameters
820      - tstr (string) #optional transformation string
821      * If tstr isn’t specified
822      = (string) current transformation string
823      * else
824      = (object) @Element
825     \*/
826     elproto.transform = function (tstr) {
827         var _ = this._;
828         if (tstr == null) {
829             return _.transform;
830         }
831         R._extractTransform(this, tstr);
832
833         this.clip && $(this.clip, {transform: this.matrix.invert()});
834         this.pattern && updatePosition(this);
835         this.node && $(this.node, {transform: this.matrix});
836     
837         if (_.sx != 1 || _.sy != 1) {
838             var sw = this.attrs[has]("stroke-width") ? this.attrs["stroke-width"] : 1;
839             this.attr({"stroke-width": sw});
840         }
841
842         return this;
843     };
844     /*\
845      * Element.hide
846      [ method ]
847      **
848      * Makes element invisible. See @Element.show.
849      = (object) @Element
850     \*/
851     elproto.hide = function () {
852         !this.removed && this.paper.safari(this.node.style.display = "none");
853         return this;
854     };
855     /*\
856      * Element.show
857      [ method ]
858      **
859      * Makes element visible. See @Element.hide.
860      = (object) @Element
861     \*/
862     elproto.show = function () {
863         !this.removed && this.paper.safari(this.node.style.display = "");
864         return this;
865     };
866     /*\
867      * Element.remove
868      [ method ]
869      **
870      * Removes element form the paper.
871     \*/
872     elproto.remove = function () {
873         if (this.removed) {
874             return;
875         }
876         eve.unbind("*.*." + this.id);
877         R._tear(this, this.paper);
878         this.node.parentNode.removeChild(this.node);
879         for (var i in this) {
880             delete this[i];
881         }
882         this.removed = true;
883     };
884     elproto._getBBox = function () {
885         if (this.node.style.display == "none") {
886             this.show();
887             var hide = true;
888         }
889         var bbox = {};
890         try {
891             bbox = this.node.getBBox();
892         } catch(e) {
893             // Firefox 3.0.x plays badly here
894         } finally {
895             bbox = bbox || {};
896         }
897         hide && this.hide();
898         return bbox;
899     };
900     /*\
901      * Element.attr
902      [ method ]
903      **
904      * Sets the attributes of the element.
905      > Parameters
906      - attrName (string) attribute’s name
907      - value (string) value
908      * or
909      - params (object) object of name/value pairs
910      * or
911      - attrName (string) attribute’s name
912      * or
913      - attrNames (array) in this case method returns array of current values for given attribute names
914      = (object) @Element if attrsName & value or params are passed in.
915      = (...) value of the attribute if only attrsName is passed in.
916      = (array) array of values of the attribute if attrsNames is passed in.
917      = (object) object of attributes if nothing is passed in.
918      > Possible parameters
919      # <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>
920      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`.
921      o clip-rect (string) comma or space separated values: x, y, width and height
922      o cursor (string) CSS type of the cursor
923      o cx (number)
924      o cy (number)
925      o fill (string) colour, gradient or image
926      o fill-opacity (number)
927      o font (string)
928      o font-family (string)
929      o font-size (number) font size in pixels
930      o font-weight (string)
931      o height (number)
932      o href (string) URL, if specified element behaves as hyperlink
933      o opacity (number)
934      o path (string) SVG path string format
935      o r (number)
936      o rx (number)
937      o ry (number)
938      o src (string) image URL, only works for @Element.image element
939      o stroke (string) stroke colour
940      o stroke-dasharray (string) [“”, “`-`”, “`.`”, “`-.`”, “`-..`”, “`. `”, “`- `”, “`--`”, “`- .`”, “`--.`”, “`--..`”]
941      o stroke-linecap (string) [“`butt`”, “`square`”, “`round`”]
942      o stroke-linejoin (string) [“`bevel`”, “`round`”, “`miter`”]
943      o stroke-miterlimit (number)
944      o stroke-opacity (number)
945      o stroke-width (number) stroke width in pixels, default is '1'
946      o target (string) used with href
947      o text (string) contents of the text element. Use `\n` for multiline text
948      o text-anchor (string) [“`start`”, “`middle`”, “`end`”], default is “`middle`”
949      o title (string) will create tooltip with a given text
950      o transform (string) see @Element.transform
951      o width (number)
952      o x (number)
953      o y (number)
954      > Gradients
955      * Linear gradient format: “`‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`90-#fff-#000`” – 90°
956      * gradient from white to black or “`0-#fff-#f00:20-#000`” – 0° gradient from white via red (at 20%) to black.
957      *
958      * radial gradient: “`r[(‹fx›, ‹fy›)]‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`r#fff-#000`” –
959      * gradient from white to black or “`r(0.25, 0.75)#fff-#000`” – gradient from white to black with focus point
960      * at 0.25, 0.75. Focus point coordinates are in 0..1 range. Radial gradients can only be applied to circles and ellipses.
961      > Path String
962      # <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>
963      > Colour Parsing
964      # <ul>
965      #     <li>Colour name (“<code>red</code>”, “<code>green</code>”, “<code>cornflowerblue</code>”, etc)</li>
966      #     <li>#••• — shortened HTML colour: (“<code>#000</code>”, “<code>#fc0</code>”, etc)</li>
967      #     <li>#•••••• — full length HTML colour: (“<code>#000000</code>”, “<code>#bd2300</code>”)</li>
968      #     <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<code>rgb(200,&nbsp;100,&nbsp;0)</code>”)</li>
969      #     <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<code>rgb(100%,&nbsp;175%,&nbsp;0%)</code>”)</li>
970      #     <li>rgba(•••, •••, •••, •••) — red, green and blue channels’ values: (“<code>rgba(200,&nbsp;100,&nbsp;0, .5)</code>”)</li>
971      #     <li>rgba(•••%, •••%, •••%, •••%) — same as above, but in %: (“<code>rgba(100%,&nbsp;175%,&nbsp;0%, 50%)</code>”)</li>
972      #     <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<code>hsb(0.5,&nbsp;0.25,&nbsp;1)</code>”)</li>
973      #     <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
974      #     <li>hsba(•••, •••, •••, •••) — same as above, but with opacity</li>
975      #     <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>
976      #     <li>hsl(•••%, •••%, •••%) — same as above, but in %</li>
977      #     <li>hsla(•••, •••, •••, •••) — same as above, but with opacity</li>
978      #     <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>
979      # </ul>
980     \*/
981     elproto.attr = function (name, value) {
982         if (this.removed) {
983             return this;
984         }
985         if (name == null) {
986             var res = {};
987             for (var a in this.attrs) if (this.attrs[has](a)) {
988                 res[a] = this.attrs[a];
989             }
990             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
991             res.transform = this._.transform;
992             return res;
993         }
994         if (value == null && R.is(name, "string")) {
995             if (name == "fill" && this.attrs.fill == "none" && this.attrs.gradient) {
996                 return this.attrs.gradient;
997             }
998             if (name == "transform") {
999                 return this._.transform;
1000             }
1001             var names = name.split(separator),
1002                 out = {};
1003             for (var i = 0, ii = names.length; i < ii; i++) {
1004                 name = names[i];
1005                 if (name in this.attrs) {
1006                     out[name] = this.attrs[name];
1007                 } else if (R.is(this.paper.customAttributes[name], "function")) {
1008                     out[name] = this.paper.customAttributes[name].def;
1009                 } else {
1010                     out[name] = R._availableAttrs[name];
1011                 }
1012             }
1013             return ii - 1 ? out : out[names[0]];
1014         }
1015         if (value == null && R.is(name, "array")) {
1016             out = {};
1017             for (i = 0, ii = name.length; i < ii; i++) {
1018                 out[name[i]] = this.attr(name[i]);
1019             }
1020             return out;
1021         }
1022         if (value != null) {
1023             var params = {};
1024             params[name] = value;
1025         } else if (name != null && R.is(name, "object")) {
1026             params = name;
1027         }
1028         for (var key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
1029             var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
1030             this.attrs[key] = params[key];
1031             for (var subkey in par) if (par[has](subkey)) {
1032                 params[subkey] = par[subkey];
1033             }
1034         }
1035         setFillAndStroke(this, params);
1036         return this;
1037     };
1038     /*\
1039      * Element.toFront
1040      [ method ]
1041      **
1042      * Moves the element so it is the closest to the viewer’s eyes, on top of other elements.
1043      = (object) @Element
1044     \*/
1045     elproto.toFront = function () {
1046         if (this.removed) {
1047             return this;
1048         }
1049         this.node.parentNode.appendChild(this.node);
1050         var svg = this.paper;
1051         svg.top != this && R._tofront(this, svg);
1052         return this;
1053     };
1054     /*\
1055      * Element.toBack
1056      [ method ]
1057      **
1058      * Moves the element so it is the furthest from the viewer’s eyes, behind other elements.
1059      = (object) @Element
1060     \*/
1061     elproto.toBack = function () {
1062         if (this.removed) {
1063             return this;
1064         }
1065         if (this.node.parentNode.firstChild != this.node) {
1066             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
1067             R._toback(this, this.paper);
1068             var svg = this.paper;
1069         }
1070         return this;
1071     };
1072     /*\
1073      * Element.insertAfter
1074      [ method ]
1075      **
1076      * Inserts current object after the given one.
1077      = (object) @Element
1078     \*/
1079     elproto.insertAfter = function (element) {
1080         if (this.removed) {
1081             return this;
1082         }
1083         var node = element.node || element[element.length - 1].node;
1084         if (node.nextSibling) {
1085             node.parentNode.insertBefore(this.node, node.nextSibling);
1086         } else {
1087             node.parentNode.appendChild(this.node);
1088         }
1089         R._insertafter(this, element, this.paper);
1090         return this;
1091     };
1092     /*\
1093      * Element.insertBefore
1094      [ method ]
1095      **
1096      * Inserts current object before the given one.
1097      = (object) @Element
1098     \*/
1099     elproto.insertBefore = function (element) {
1100         if (this.removed) {
1101             return this;
1102         }
1103         var node = element.node || element[0].node;
1104         node.parentNode.insertBefore(this.node, node);
1105         R._insertbefore(this, element, this.paper);
1106         return this;
1107     };
1108     elproto.blur = function (size) {
1109         // Experimental. No Safari support. Use it on your own risk.
1110         var t = this;
1111         if (+size !== 0) {
1112             var fltr = $("filter"),
1113                 blur = $("feGaussianBlur");
1114             t.attrs.blur = size;
1115             fltr.id = R.createUUID();
1116             $(blur, {stdDeviation: +size || 1.5});
1117             fltr.appendChild(blur);
1118             t.paper.defs.appendChild(fltr);
1119             t._blur = fltr;
1120             $(t.node, {filter: "url(#" + fltr.id + ")"});
1121         } else {
1122             if (t._blur) {
1123                 t._blur.parentNode.removeChild(t._blur);
1124                 delete t._blur;
1125                 delete t.attrs.blur;
1126             }
1127             t.node.removeAttribute("filter");
1128         }
1129     };
1130     R._engine.circle = function (svg, x, y, r) {
1131         var el = $("circle");
1132         svg.canvas && svg.canvas.appendChild(el);
1133         var res = new Element(el, svg);
1134         res.attrs = {cx: x, cy: y, r: r, fill: "none", stroke: "#000"};
1135         res.type = "circle";
1136         $(el, res.attrs);
1137         return res;
1138     };
1139     R._engine.rect = function (svg, x, y, w, h, r) {
1140         var el = $("rect");
1141         svg.canvas && svg.canvas.appendChild(el);
1142         var res = new Element(el, svg);
1143         res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
1144         res.type = "rect";
1145         $(el, res.attrs);
1146         return res;
1147     };
1148     R._engine.ellipse = function (svg, x, y, rx, ry) {
1149         var el = $("ellipse");
1150         svg.canvas && svg.canvas.appendChild(el);
1151         var res = new Element(el, svg);
1152         res.attrs = {cx: x, cy: y, rx: rx, ry: ry, fill: "none", stroke: "#000"};
1153         res.type = "ellipse";
1154         $(el, res.attrs);
1155         return res;
1156     };
1157     R._engine.image = function (svg, src, x, y, w, h) {
1158         var el = $("image");
1159         $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
1160         el.setAttributeNS(xlink, "href", src);
1161         svg.canvas && svg.canvas.appendChild(el);
1162         var res = new Element(el, svg);
1163         res.attrs = {x: x, y: y, width: w, height: h, src: src};
1164         res.type = "image";
1165         return res;
1166     };
1167     R._engine.text = function (svg, x, y, text) {
1168         var el = $("text");
1169         // $(el, {x: x, y: y, "text-anchor": "middle"});
1170         svg.canvas && svg.canvas.appendChild(el);
1171         var res = new Element(el, svg);
1172         res.attrs = {
1173             x: x,
1174             y: y,
1175             "text-anchor": "middle",
1176             text: text,
1177             font: R._availableAttrs.font,
1178             stroke: "none",
1179             fill: "#000"
1180         };
1181         res.type = "text";
1182         setFillAndStroke(res, res.attrs);
1183         return res;
1184     };
1185     R._engine.setSize = function (width, height) {
1186         this.width = width || this.width;
1187         this.height = height || this.height;
1188         this.canvas.setAttribute("width", this.width);
1189         this.canvas.setAttribute("height", this.height);
1190         if (this._viewBox) {
1191             this.setViewBox.apply(this, this._viewBox);
1192         }
1193         return this;
1194     };
1195     R._engine.create = function () {
1196         var con = R._getContainer.apply(0, arguments),
1197             container = con && con.container,
1198             x = con.x,
1199             y = con.y,
1200             width = con.width,
1201             height = con.height;
1202         if (!container) {
1203             throw new Error("SVG container not found.");
1204         }
1205         var cnvs = $("svg"),
1206             css = "overflow:hidden;",
1207             isFloating;
1208         x = x || 0;
1209         y = y || 0;
1210         width = width || 512;
1211         height = height || 342;
1212         $(cnvs, {
1213             height: height,
1214             version: 1.1,
1215             width: width,
1216             xmlns: "http://www.w3.org/2000/svg"
1217         });
1218         if (container == 1) {
1219             cnvs.style.cssText = css + "position:absolute;left:" + x + "px;top:" + y + "px";
1220             R._g.doc.body.appendChild(cnvs);
1221             isFloating = 1;
1222         } else {
1223             cnvs.style.cssText = css + "position:relative";
1224             if (container.firstChild) {
1225                 container.insertBefore(cnvs, container.firstChild);
1226             } else {
1227                 container.appendChild(cnvs);
1228             }
1229         }
1230         container = new R._Paper;
1231         container.width = width;
1232         container.height = height;
1233         container.canvas = cnvs;
1234         // plugins.call(container, container, R.fn);
1235         container.clear();
1236         container._left = container._top = 0;
1237         isFloating && (container.renderfix = function () {});
1238         container.renderfix();
1239         return container;
1240     };
1241     R._engine.setViewBox = function (x, y, w, h, fit) {
1242         eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
1243         var size = mmax(w / this.width, h / this.height),
1244             top = this.top,
1245             aspectRatio = fit ? "meet" : "xMinYMin",
1246             vb,
1247             sw;
1248         if (x == null) {
1249             if (this._vbSize) {
1250                 size = 1;
1251             }
1252             delete this._vbSize;
1253             vb = "0 0 " + this.width + S + this.height;
1254         } else {
1255             this._vbSize = size;
1256             vb = x + S + y + S + w + S + h;
1257         }
1258         $(this.canvas, {
1259             viewBox: vb,
1260             preserveAspectRatio: aspectRatio
1261         });
1262         while (size && top) {
1263             sw = "stroke-width" in top.attrs ? top.attrs["stroke-width"] : 1;
1264             top.attr({"stroke-width": sw});
1265             top._.dirty = 1;
1266             top._.dirtyT = 1;
1267             top = top.prev;
1268         }
1269         this._viewBox = [x, y, w, h, !!fit];
1270         return this;
1271     };
1272     /*\
1273      * Paper.renderfix
1274      [ method ]
1275      **
1276      * Fixes the issue of Firefox and IE9 regarding subpixel rendering. If paper is dependant
1277      * on other elements after reflow it could shift half pixel which cause for lines to lost their crispness.
1278      * This method fixes the issue.
1279      **
1280        Special thanks to Mariusz Nowak (http://www.medikoo.com/) for this method.
1281     \*/
1282     R.prototype.renderfix = function () {
1283         var cnvs = this.canvas,
1284             s = cnvs.style,
1285             pos = cnvs.getScreenCTM() || cnvs.createSVGMatrix(),
1286             left = -pos.e % 1,
1287             top = -pos.f % 1;
1288         if (left || top) {
1289             if (left) {
1290                 this._left = (this._left + left) % 1;
1291                 s.left = this._left + "px";
1292             }
1293             if (top) {
1294                 this._top = (this._top + top) % 1;
1295                 s.top = this._top + "px";
1296             }
1297         }
1298     };
1299     /*\
1300      * Paper.clear
1301      [ method ]
1302      **
1303      * Clears the paper, i.e. removes all the elements.
1304     \*/
1305     R.prototype.clear = function () {
1306         R.eve("clear", this);
1307         var c = this.canvas;
1308         while (c.firstChild) {
1309             c.removeChild(c.firstChild);
1310         }
1311         this.bottom = this.top = null;
1312         (this.desc = $("desc")).appendChild(R._g.doc.createTextNode("Created with Rapha\xebl " + R.version));
1313         c.appendChild(this.desc);
1314         c.appendChild(this.defs = $("defs"));
1315     };
1316     /*\
1317      * Paper.remove
1318      [ method ]
1319      **
1320      * Removes the paper from the DOM.
1321     \*/
1322     R.prototype.remove = function () {
1323         eve("remove", this);
1324         this.canvas.parentNode && this.canvas.parentNode.removeChild(this.canvas);
1325         for (var i in this) {
1326             this[i] = removed(i);
1327         }
1328     };
1329     var setproto = R.st;
1330     for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) {
1331         setproto[method] = (function (methodname) {
1332             return function () {
1333                 var arg = arguments;
1334                 return this.forEach(function (el) {
1335                     el[methodname].apply(el, arg);
1336                 });
1337             };
1338         })(method);
1339     }
1340 }(window.Raphael);