]> source.dussan.org Git - svg.js.git/commitdiff
Various small fixes
authorwout <wout@impinc.co.uk>
Fri, 25 Jul 2014 15:47:03 +0000 (17:47 +0200)
committerwout <wout@impinc.co.uk>
Fri, 25 Jul 2014 15:47:03 +0000 (17:47 +0200)
18 files changed:
.gitignore
CHANGELOG.md
README.md
dist/svg.js
dist/svg.min.js
docs/index.html [deleted file]
docs/svgjs.css [deleted file]
gulpfile.js
spec/spec/element.js
spec/spec/matrix.js
spec/spec/regex.js
src/adopter.js [deleted file]
src/helpers.js
src/number.js
src/regex.js
src/svg.js
src/text.js
src/use.js

index cf96662f911026b127c089269f173aa4f8425d46..5bc37e0d7b9a6e212a8198b7b4ddcdc7b150eb03 100644 (file)
@@ -2,6 +2,7 @@
 public
 site/
 bleed/
+docs/
 obsolete/
 test/
 src/index.js
\ No newline at end of file
index 1a077dae1d6076b95404d2db9c66e08389851298..d6711598ea623a7bc00400c924886dde7763976a 100755 (executable)
@@ -2,7 +2,8 @@
 
 - added `morph()` method to `SVG.PathArray` -> __TODO!__
 - added `rotate()` method to linear gradients -> __TODO!__
-- added `'random'` option to `SVG.Color` -> __TODO!__
+- added `'random'` option and `randomize()` method to `SVG.Color` -> __TODO!__
+- added `SVG.Title` and `SVG.Desc` -> __TODO!__
 
 # 1.0.0-rc.10 (?/07/2014)
 
 - fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__
 - added raw svg import functionality with the `svg()` method -> __TODO!__
 - moved sup-pixel offset fix to a separate plugin -> __TODO!__
-- added `SVG.Title` and `SVG.Desc` -> __TODO!__
 - added `native()` method to elements and matrix to get to the native api
 - added `untransform()` method to remove all transformations -> __TODO!__
 - fixed a bug in IE11 with `mouseenter` and `mouseleave` -> __TODO!__
 - switched from Ruby's `rake` to Node's `gulp` for building [thanks to Alex Ewerlöf]
+- added coding style description to README
 
 # 1.0.0-rc.9 (17/06/2014)
 
index bce38337a9d9b82ad8b7e840d2d59ce3989d0ce4..2100e54ba1c11bb8ef0cec65287ff63fb115a645 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -3309,18 +3309,94 @@ Here are a few nice plugins that are available for SVG.js:
 
 
 ## Contributing
-All contributions are very welcome but please make sure you:
-
-- maintain the coding style
-  - __indentation__ of 2 spaces
-  - no tailing __semicolons__
-  - single __quotes__
-  - use one line __comments__ to describe any additions
-  - look around and you'll know what to do
-- __write at least one spec example per implementation or modification__
-
-Before running the specs you will need to build the library.
-Be aware that pull requests without specs will be declined.
+All contributions are very welcome but please make sure you follow the same coding style. Here are some guidelines.
+
+### Indentation
+We do it with __two spaces__. Make sure you don't start using tabs becaus then things get messy.
+
+### Avoid hairy code
+We like to keep things simple and clean, don't write anything you don't need. So use __single quotes__ where possible and __avoid semicolons__, we're not writing PHP here.
+
+__Good__:
+```javascript
+var text = draw.text('with single quotes here')
+  , nest = draw.nested().attr('x', '50%')
+
+for (var i = 0; i < 5; i++)
+  if (i != 3)
+    nest.circle(i * 100)
+```
+
+__Bad__:
+```javascript
+var text = draw.text("with single quotes here");
+var nest = draw.nested().attr("x", "50%");
+
+for (var i = 0; i < 5; i++) {
+  if (i != 3) {
+    nest.circle(100);
+  };
+};
+```
+
+### Let your code breathe people!
+Don't try to be a code compressor yourself, they do way better a job anyway. Give your code some spaces and newlines.
+
+__Good__:
+```javascript
+var nest = draw.nested().attr({
+  x:      10
+, y:      20
+, width:  200
+, height: 300
+})
+
+for (var i = 0; i < 5; i++)
+  nest.circle(100)
+```
+
+__Bad__:
+```javascript
+var nest=draw.nested().attr({x:10,y:20,width:200,height:300});
+for(var i=0;i<5;i++)nest.circle(100);
+```
+
+### It won't hurt to add a few comments
+Where necessary tell us what you are doing but be concise. We only use single-line comments. Also keep your variable and method names short while maintaining readability.
+
+__Good__:
+```javascript
+// Adds orange-specific methods
+SVG.extend(SVG.Rect, {
+  // Add a nice, transparent orange
+  orangify: function() {
+    // fill with orange color
+    this.fill('orange')
+
+    // add a slight opacity
+    return this.opacity(0.85)
+  }
+})
+```
+
+__Bad__:
+```javascript
+/*
+ *
+ * does something with orange and opacity
+ *
+ */
+SVG.extend(SVG.Rect, {
+  orgf: function() {
+    return this.fill('orange').opacity(0.85)
+  }
+})
+```
+
+### Test. Your. Code.
+It's not that hard to write at least one example per implementation although we prefer more. Your code might seem to work by quickly testing it in your brwoser but more than often you can't forsee everything.
+
+Before running the specs you will need to build the library. Be aware that pull requests without specs will be declined.
 
 
 ## Building
index da5a21e3b185227e36b6996fadc85dd1f71d5356..65ca875e563f40585c336b4f7ef6048ece037d51 100755 (executable)
@@ -6,10 +6,9 @@
 * @copyright Wout Fierens <wout@impinc.co.uk>
 * @license MIT
 *
-* BUILT: Tue Jul 22 2014 13:34:24 GMT+0200 (CEST)
+* BUILT: Fri Jul 25 2014 11:10:49 GMT+0200 (CEST)
 */
 ;(function() {
-
 // The main wrapping element
 var SVG = this.SVG = function(element) {
   if (SVG.supported) {
@@ -27,6 +26,15 @@ SVG.ns    = 'http://www.w3.org/2000/svg'
 SVG.xmlns = 'http://www.w3.org/2000/xmlns/'
 SVG.xlink = 'http://www.w3.org/1999/xlink'
 
+// Svg support test
+SVG.supported = (function() {
+  return !! document.createElementNS &&
+         !! document.createElementNS(SVG.ns,'svg').createSVGRect
+})()
+
+// Don't bother to continue if SVG is not supported 
+if (!SVG.supported) return false
+
 // Element id sequence
 SVG.did  = 1000
 
@@ -37,10 +45,10 @@ SVG.eid = function(name) {
 
 // Method for element creation
 SVG.create = function(name) {
-  /* create element */
+  // Create element
   var element = document.createElementNS(this.ns, name)
   
-  /* apply unique id */
+  // Apply unique id
   element.setAttribute('id', this.eid(name))
   
   return element
@@ -50,10 +58,10 @@ SVG.create = function(name) {
 SVG.extend = function() {
   var modules, methods, key, i
   
-  /* get list of modules */
+  // Get list of modules
   modules = [].slice.call(arguments)
   
-  /* get object with extensions */
+  // Get object with extensions
   methods = modules.pop()
   
   for (i = modules.length - 1; i >= 0; i--)
@@ -61,61 +69,35 @@ SVG.extend = function() {
       for (key in methods)
         modules[i].prototype[key] = methods[key]
 
-  /* make sure SVG.Set inherits any newly added methods */
+  // Make sure SVG.Set inherits any newly added methods
   if (SVG.Set && SVG.Set.inherit)
     SVG.Set.inherit()
 }
 
-// Initialize parsing element
-SVG.prepare = function(element) {
-  /* select document body and create invisible svg element */
-  var body = document.getElementsByTagName('body')[0]
-    , draw = (body ? new SVG.Doc(body) : element.nested()).size(2, 0)
-    , path = SVG.create('path')
-
-  /* insert parsers */
-  draw.node.appendChild(path)
-
-  /* create parser object */
-  SVG.parser = {
-    body: body || element.parent()
-  , draw: draw.style('opacity:0;position:fixed;left:100%;top:100%;overflow:hidden')
-  , poly: draw.polyline().node
-  , path: path
-  }
-}
-
-// svg support test
-SVG.supported = (function() {
-  return !! document.createElementNS &&
-         !! document.createElementNS(SVG.ns,'svg').createSVGRect
-})()
-
-if (!SVG.supported) return false
-
 // Invent new element
 SVG.invent = function(config) {
-       /* create element initializer */
-       var initializer = typeof config.create == 'function' ?
-               config.create :
-               function() {
-                       this.constructor.call(this, SVG.create(config.create))
-               }
+  // Create element initializer
+  var initializer = typeof config.create == 'function' ?
+    config.create :
+    function() {
+      this.constructor.call(this, SVG.create(config.create))
+    }
 
-       /* inherit prototype */
-       if (config.inherit)
-               initializer.prototype = new config.inherit
+  // Inherit prototype
+  if (config.inherit)
+    initializer.prototype = new config.inherit
 
-       /* extend with methods */
-       if (config.extend)
-               SVG.extend(initializer, config.extend)
+  // Extend with methods
+  if (config.extend)
+    SVG.extend(initializer, config.extend)
 
-       /* attach construct method to parent */
-       if (config.construct)
-               SVG.extend(config.parent || SVG.Container, config.construct)
+  // Attach construct method to parent
+  if (config.construct)
+    SVG.extend(config.parent || SVG.Container, config.construct)
 
-       return initializer
+  return initializer
 }
+
 // Adopt existing svg elements
 SVG.adopt = function(node) {
   // Make sure a node isn't already adopted
@@ -147,43 +129,59 @@ SVG.adopt = function(node) {
 
   return element
 }
+
+// Initialize parsing element
+SVG.prepare = function(element) {
+  // Select document body and create invisible svg element
+  var body = document.getElementsByTagName('body')[0]
+    , draw = (body ? new SVG.Doc(body) : element.nested()).size(2, 0)
+    , path = SVG.create('path')
+
+  // Insert parsers
+  draw.node.appendChild(path)
+
+  // Create parser object
+  SVG.parser = {
+    body: body || element.parent()
+  , draw: draw.style('opacity:0;position:fixed;left:100%;top:100%;overflow:hidden')
+  , poly: draw.polyline().node
+  , path: path
+  }
+}
 // Storage for regular expressions
 SVG.regex = {
-  /* parse unit value */
+  // Parse unit value
   unit:             /^(-?[\d\.]+)([a-z%]{0,2})$/
   
-  /* parse hex value */
+  // Parse hex value
 , hex:              /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i
   
-  /* parse rgb value */
+  // Parse rgb value
 , rgb:              /rgb\((\d+),(\d+),(\d+)\)/
   
-  /* parse reference id */
+  // Parse reference id
 , reference:        /#([a-z0-9\-_]+)/i
 
-  /* test hex value */
+  // Test hex value
 , isHex:            /^#[a-f0-9]{3,6}$/i
   
-  /* test rgb value */
+  // Test rgb value
 , isRgb:            /^rgb\(/
   
-  /* test css declaration */
+  // Test css declaration
 , isCss:            /[^:]+:[^;]+;?/
   
-  /* test for blank string */
+  // Test for blank string
 , isBlank:          /^(\s+)?$/
   
-  /* test for numeric string */
+  // Test for numeric string
 , isNumber:         /^-?[\d\.]+$/
 
-  /* test for percent value */
+  // Test for percent value
 , isPercent:        /^-?[\d\.]+%$/
 
-  /* test for image url */
-, isImage:          /\.(jpg|jpeg|png|gif)(\?[^=]+.*)?/i
-  
-  /* test for namespaced event */
-, isEvent:          /^[\w]+:[\w]+$/
+  // Test for image url
+, isImage:          /\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i
 
 }
 SVG.utils = {
@@ -729,105 +727,107 @@ SVG.extend(SVG.PathArray, {
 
 })
 // Module for unit convertions
-SVG.Number = function(value) {
-
-  /* initialize defaults */
-  this.value = 0
-  this.unit = ''
-
-  /* parse value */
-  if (typeof value === 'number') {
-    /* ensure a valid numeric value */
-    this.value = isNaN(value) ? 0 : !isFinite(value) ? (value < 0 ? -3.4e+38 : +3.4e+38) : value
-
-  } else if (typeof value === 'string') {
-    var match = value.match(SVG.regex.unit)
+SVG.Number = SVG.invent({
+  // Initialize
+  create: function(value) {
+    // Initialize defaults
+    this.value = 0
+    this.unit = ''
+
+    // Parse value
+    if (typeof value === 'number') {
+      // Ensure a valid numeric value
+      this.value = isNaN(value) ? 0 : !isFinite(value) ? (value < 0 ? -3.4e+38 : +3.4e+38) : value
+
+    } else if (typeof value === 'string') {
+      var match = value.match(SVG.regex.unit)
+
+      if (match) {
+        // Make value numeric
+        this.value = parseFloat(match[1])
+      
+        // Normalize
+        if (match[2] == '%')
+          this.value /= 100
+        else if (match[2] == 's')
+          this.value *= 1000
+      
+        // Store unit
+        this.unit = match[2]
+      }
 
-    if (match) {
-      /* make value numeric */
-      this.value = parseFloat(match[1])
-    
-      /* normalize percent value */
-      if (match[2] == '%')
-        this.value /= 100
-      else if (match[2] == 's')
-        this.value *= 1000
-    
-      /* store unit */
-      this.unit = match[2]
+    } else {
+      if (value instanceof SVG.Number) {
+        this.value = value.value
+        this.unit  = value.unit
+      }
     }
 
-  } else {
-    if (value instanceof SVG.Number) {
-      this.value = value.value
-      this.unit  = value.unit
-    }
   }
+  // Add methods
+, extend: {
+    // Stringalize
+    toString: function() {
+      return (
+        this.unit == '%' ?
+          ~~(this.value * 1e8) / 1e6:
+        this.unit == 's' ?
+          this.value / 1e3 :
+          this.value
+      ) + this.unit
+    }
+  , // Convert to primitive
+    valueOf: function() {
+      return this.value
+    }
+    // Add number
+  , plus: function(number) {
+      this.value = this + new SVG.Number(number)
 
-}
-
-SVG.extend(SVG.Number, {
-  // Stringalize
-  toString: function() {
-    return (
-      this.unit == '%' ?
-        ~~(this.value * 1e8) / 1e6:
-      this.unit == 's' ?
-        this.value / 1e3 :
-        this.value
-    ) + this.unit
-  }
-, // Convert to primitive
-  valueOf: function() {
-    return this.value
-  }
-  // Add number
-, plus: function(number) {
-    this.value = this + new SVG.Number(number)
+      return this
+    }
+    // Subtract number
+  , minus: function(number) {
+      return this.plus(-new SVG.Number(number))
+    }
+    // Multiply number
+  , times: function(number) {
+      this.value = this * new SVG.Number(number)
 
-    return this
-  }
-  // Subtract number
-, minus: function(number) {
-    return this.plus(-new SVG.Number(number))
-  }
-  // Multiply number
-, times: function(number) {
-    this.value = this * new SVG.Number(number)
+      return this
+    }
+    // Divide number
+  , divide: function(number) {
+      this.value = this / new SVG.Number(number)
 
-    return this
-  }
-  // Divide number
-, divide: function(number) {
-    this.value = this / new SVG.Number(number)
+      return this
+    }
+    // Convert to different unit
+  , to: function(unit) {
+      if (typeof unit === 'string')
+        this.unit = unit
 
-    return this
-  }
-  // Convert to different unit
-, to: function(unit) {
-    if (typeof unit === 'string')
-      this.unit = unit
+      return this
+    }
+    // Make number morphable
+  , morph: function(number) {
+      this.destination = new SVG.Number(number)
 
-    return this
-  }
-  // Make number morphable
-, morph: function(number) {
-    this.destination = new SVG.Number(number)
+      return this
+    }
+    // Get morphed number at given position
+  , at: function(pos) {
+      // Make sure a destination is defined
+      if (!this.destination) return this
 
-    return this
-  }
-  // Get morphed number at given position
-, at: function(pos) {
-    /* make sure a destination is defined */
-    if (!this.destination) return this
+      // Generate new morphed number
+      return new SVG.Number(this.destination)
+          .minus(this)
+          .times(pos)
+          .plus(this)
+    }
 
-    /* generate new morphed number */
-    return new SVG.Number(this.destination)
-        .minus(this)
-        .times(pos)
-        .plus(this)
   }
-
 })
 
 SVG.ViewBox = function(element) {
@@ -2742,10 +2742,10 @@ SVG.Use = SVG.invent({
 , extend: {
     // Use element as a reference
     element: function(element) {
-      /* store target element */
+      // Store target element
       this.target = element
 
-      /* set lined element */
+      // Set lined element
       return this.attr('href', '#' + element, SVG.xlink)
     }
   }
@@ -3099,7 +3099,6 @@ SVG.Image = SVG.invent({
   }
 
 })
-
 SVG.Text = SVG.invent({
   // Initialize node
   create: function() {
@@ -3880,12 +3879,10 @@ function compToHex(comp) {
 
 // Calculate proportional width and height values when necessary
 function proportionalSize(box, width, height) {
-       if (width == null || height == null) {
-               if (height == null)
-                       height = box.height / box.width * width
-               else if (width == null)
-                       width = box.width / box.height * height
-       }
+       if (height == null)
+               height = box.height / box.width * width
+       else if (width == null)
+               width = box.width / box.height * height
        
        return {
                width:  width
index c4d29876c27d36beb73c0af159437d06121fd475..10684731bf055dafe476f6a5d0e816faae0d176b 100755 (executable)
@@ -1,2 +1,2 @@
-/*! SVG.js v1.0.0-rc.10 MIT*/(function(){function t(t){return t.toLowerCase().replace(/-(.)/g,function(t,e){return e.toUpperCase()})}function e(t){return t.charAt(0).toUpperCase()+t.slice(1)}function n(t){return 4==t.length?["#",t.substring(1,2),t.substring(1,2),t.substring(2,3),t.substring(2,3),t.substring(3,4),t.substring(3,4)].join(""):t}function i(t){var e=t.toString(16);return 1==e.length?"0"+e:e}function r(t,e,n){return(null==e||null==n)&&(null==n?n=t.height/t.width*e:null==e&&(e=t.width/t.height*n)),{width:e,height:n}}function s(t,e,n){return{x:e*t.a+n*t.c+0,y:e*t.b+n*t.d+0}}function h(t){return{a:t[0],b:t[1],c:t[2],d:t[3],e:t[4],f:t[5]}}function o(t,e){return"number"==typeof t.from?t.from+(t.to-t.from)*e:t instanceof d.Color||t instanceof d.Number?t.at(e):1>e?t.from:t.to}function a(t){for(var e=0,n=t.length,i="";n>e;e++)i+=t[e][0],null!=t[e][1]&&(i+=t[e][1],null!=t[e][2]&&(i+=" ",i+=t[e][2],null!=t[e][3]&&(i+=" ",i+=t[e][3],i+=" ",i+=t[e][4],null!=t[e][5]&&(i+=" ",i+=t[e][5],i+=" ",i+=t[e][6],null!=t[e][7]&&(i+=" ",i+=t[e][7])))));return i+" "}function u(t){for(var e=t.childNodes.length-1;e>=0;e--)t.childNodes[e]instanceof SVGElement&&u(t.childNodes[e]);return d.adopt(t).id(d.eid(t.nodeName))}function l(t){return t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function c(t){var e=t.toString().match(d.regex.reference);return e?e[1]:void 0}function f(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),n}var d=this.SVG=function(t){return d.supported?(t=new d.Doc(t),d.parser||d.prepare(t),t):void 0};if(d.ns="http://www.w3.org/2000/svg",d.xmlns="http://www.w3.org/2000/xmlns/",d.xlink="http://www.w3.org/1999/xlink",d.did=1e3,d.eid=function(t){return"Svgjs"+e(t)+d.did++},d.create=function(t){var e=document.createElementNS(this.ns,t);return e.setAttribute("id",this.eid(t)),e},d.extend=function(){var t,e,n,i;for(t=[].slice.call(arguments),e=t.pop(),i=t.length-1;i>=0;i--)if(t[i])for(n in e)t[i].prototype[n]=e[n];d.Set&&d.Set.inherit&&d.Set.inherit()},d.prepare=function(t){var e=document.getElementsByTagName("body")[0],n=(e?new d.Doc(e):t.nested()).size(2,0),i=d.create("path");n.node.appendChild(i),d.parser={body:e||t.parent(),draw:n.style("opacity:0;position:fixed;left:100%;top:100%;overflow:hidden"),poly:n.polyline().node,path:i}},d.supported=function(){return!!document.createElementNS&&!!document.createElementNS(d.ns,"svg").createSVGRect}(),!d.supported)return!1;d.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,d.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&d.extend(e,t.extend),t.construct&&d.extend(t.parent||d.Container,t.construct),e},d.adopt=function(t){if(t.instance)return t.instance;var n;return n="svg"==t.nodeName?t.parentNode instanceof SVGElement?new d.Nested:new d.Doc:"lineairGradient"==t.nodeName?new d.Gradient("lineair"):"radialGradient"==t.nodeName?new d.Gradient("radial"):d[e(t.nodeName)]?new(d[e(t.nodeName)]):new d.Element(t),n.type=t.nodeName,n.node=t,t.instance=n,n instanceof d.Doc&&n.namespace().defs(),n},d.regex={unit:/^(-?[\d\.]+)([a-z%]{0,2})$/,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^-?[\d\.]+$/,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif)(\?[^=]+.*)?/i,isEvent:/^[\w]+:[\w]+$/},d.utils={map:function(t,e){var n,i=t.length,r=[];for(n=0;i>n;n++)r.push(e(t[n]));return r},radians:function(t){return t%360*Math.PI/180},degrees:function(t){return 180*t/Math.PI%360}},d.defaults={attrs:{"fill-opacity":1,"stroke-opacity":1,"stroke-width":0,"stroke-linejoin":"miter","stroke-linecap":"butt",fill:"#000000",stroke:"#000000",opacity:1,x:0,y:0,cx:0,cy:0,width:0,height:0,r:0,rx:0,ry:0,offset:0,"stop-opacity":1,"stop-color":"#000000","font-size":16,"font-family":"Helvetica, Arial, sans-serif","text-anchor":"start"}},d.Color=function(t){var e;this.r=0,this.g=0,this.b=0,"string"==typeof t?d.regex.isRgb.test(t)?(e=d.regex.rgb.exec(t.replace(/\s/g,"")),this.r=parseInt(e[1]),this.g=parseInt(e[2]),this.b=parseInt(e[3])):d.regex.isHex.test(t)&&(e=d.regex.hex.exec(n(t)),this.r=parseInt(e[1],16),this.g=parseInt(e[2],16),this.b=parseInt(e[3],16)):"object"==typeof t&&(this.r=t.r,this.g=t.g,this.b=t.b)},d.extend(d.Color,{toString:function(){return this.toHex()},toHex:function(){return"#"+i(this.r)+i(this.g)+i(this.b)},toRgb:function(){return"rgb("+[this.r,this.g,this.b].join()+")"},brightness:function(){return this.r/255*.3+this.g/255*.59+this.b/255*.11},morph:function(t){return this.destination=new d.Color(t),this},at:function(t){return this.destination?(t=0>t?0:t>1?1:t,new d.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),d.Color.test=function(t){return t+="",d.regex.isHex.test(t)||d.regex.isRgb.test(t)},d.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},d.Color.isColor=function(t){return d.Color.isRgb(t)||d.Color.test(t)},d.Array=function(t,e){t=(t||[]).valueOf(),0==t.length&&e&&(t=e.valueOf()),this.value=this.parse(t)},d.extend(d.Array,{morph:function(t){if(this.destination=this.parse(t),this.value.length!=this.destination.length){for(var e=this.value[this.value.length-1],n=this.destination[this.destination.length-1];this.value.length>this.destination.length;)this.destination.push(n);for(;this.value.length<this.destination.length;)this.value.push(e)}return this},settle:function(){for(var t=0,e=this.value.length,n=[];e>t;t++)-1==n.indexOf(this.value[t])&&n.push(this.value[t]);return this.value=n},at:function(t){if(!this.destination)return this;for(var e=0,n=this.value.length,i=[];n>e;e++)i.push(this.value[e]+(this.destination[e]-this.value[e])*t);return new d.Array(i)},toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)},split:function(t){return t.replace(/\s+/g," ").replace(/^\s+|\s+$/g,"").split(" ")},reverse:function(){return this.value.reverse(),this}}),d.PointArray=function(t,e){this.constructor.call(this,t,e||[[0,0]])},d.PointArray.prototype=new d.Array,d.extend(d.PointArray,{toString:function(){for(var t=0,e=this.value.length,n=[];e>t;t++)n.push(this.value[t].join(","));return n.join(" ")},toLine:function(){return{x1:this.value[0][0],y1:this.value[0][1],x2:this.value[1][0],y2:this.value[1][1]}},at:function(t){if(!this.destination)return this;for(var e=0,n=this.value.length,i=[];n>e;e++)i.push([this.value[e][0]+(this.destination[e][0]-this.value[e][0])*t,this.value[e][1]+(this.destination[e][1]-this.value[e][1])*t]);return new d.PointArray(i)},parse:function(t){if(t=t.valueOf(),Array.isArray(t))return t;t=this.split(t);for(var e,n=0,i=t.length,r=[];i>n;n++)e=t[n].split(","),r.push([parseFloat(e[0]),parseFloat(e[1])]);return r},move:function(t,e){var n=this.bbox();if(t-=n.x,e-=n.y,!isNaN(t)&&!isNaN(e))for(var i=this.value.length-1;i>=0;i--)this.value[i]=[this.value[i][0]+t,this.value[i][1]+e];return this},size:function(t,e){var n,i=this.bbox();for(n=this.value.length-1;n>=0;n--)this.value[n][0]=(this.value[n][0]-i.x)*t/i.width+i.x,this.value[n][1]=(this.value[n][1]-i.y)*e/i.height+i.y;return this},bbox:function(){return d.parser.poly.setAttribute("points",this.toString()),d.parser.poly.getBBox()}}),d.PathArray=function(t,e){this.constructor.call(this,t,e||[["M",0,0]])},d.PathArray.prototype=new d.Array,d.extend(d.PathArray,{toString:function(){return a(this.value)},move:function(t,e){var n=this.bbox();if(t-=n.x,e-=n.y,!isNaN(t)&&!isNaN(e))for(var i,r=this.value.length-1;r>=0;r--)i=this.value[r][0],"M"==i||"L"==i||"T"==i?(this.value[r][1]+=t,this.value[r][2]+=e):"H"==i?this.value[r][1]+=t:"V"==i?this.value[r][1]+=e:"C"==i||"S"==i||"Q"==i?(this.value[r][1]+=t,this.value[r][2]+=e,this.value[r][3]+=t,this.value[r][4]+=e,"C"==i&&(this.value[r][5]+=t,this.value[r][6]+=e)):"A"==i&&(this.value[r][6]+=t,this.value[r][7]+=e);return this},size:function(t,e){var n,i,r=this.bbox();for(n=this.value.length-1;n>=0;n--)i=this.value[n][0],"M"==i||"L"==i||"T"==i?(this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x,this.value[n][2]=(this.value[n][2]-r.y)*e/r.height+r.y):"H"==i?this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x:"V"==i?this.value[n][1]=(this.value[n][1]-r.y)*e/r.height+r.y:"C"==i||"S"==i||"Q"==i?(this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x,this.value[n][2]=(this.value[n][2]-r.y)*e/r.height+r.y,this.value[n][3]=(this.value[n][3]-r.x)*t/r.width+r.x,this.value[n][4]=(this.value[n][4]-r.y)*e/r.height+r.y,"C"==i&&(this.value[n][5]=(this.value[n][5]-r.x)*t/r.width+r.x,this.value[n][6]=(this.value[n][6]-r.y)*e/r.height+r.y)):"A"==i&&(this.value[n][1]=this.value[n][1]*t/r.width,this.value[n][2]=this.value[n][2]*e/r.height,this.value[n][6]=(this.value[n][6]-r.x)*t/r.width+r.x,this.value[n][7]=(this.value[n][7]-r.y)*e/r.height+r.y);return this},parse:function(t){if(t instanceof d.PathArray)return t.valueOf();var e,n,i,r,s,h,o,u,l,c,f,p=0,m=0;for(d.parser.path.setAttribute("d","string"==typeof t?t:a(t)),f=d.parser.path.pathSegList,e=0,n=f.numberOfItems;n>e;++e)c=f.getItem(e),l=c.pathSegTypeAsLetter,"M"==l||"L"==l||"H"==l||"V"==l||"C"==l||"S"==l||"Q"==l||"T"==l||"A"==l?("x"in c&&(p=c.x),"y"in c&&(m=c.y)):("x1"in c&&(s=p+c.x1),"x2"in c&&(o=p+c.x2),"y1"in c&&(h=m+c.y1),"y2"in c&&(u=m+c.y2),"x"in c&&(p+=c.x),"y"in c&&(m+=c.y),"m"==l?f.replaceItem(d.parser.path.createSVGPathSegMovetoAbs(p,m),e):"l"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoAbs(p,m),e):"h"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoHorizontalAbs(p),e):"v"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoVerticalAbs(m),e):"c"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoCubicAbs(p,m,s,h,o,u),e):"s"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoCubicSmoothAbs(p,m,o,u),e):"q"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoQuadraticAbs(p,m,s,h),e):"t"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoQuadraticSmoothAbs(p,m),e):"a"==l?f.replaceItem(d.parser.path.createSVGPathSegArcAbs(p,m,c.r1,c.r2,c.angle,c.largeArcFlag,c.sweepFlag),e):("z"==l||"Z"==l)&&(p=i,m=r)),("M"==l||"m"==l)&&(i=p,r=m);for(t=[],f=d.parser.path.pathSegList,e=0,n=f.numberOfItems;n>e;++e)c=f.getItem(e),l=c.pathSegTypeAsLetter,p=[l],"M"==l||"L"==l||"T"==l?p.push(c.x,c.y):"H"==l?p.push(c.x):"V"==l?p.push(c.y):"C"==l?p.push(c.x1,c.y1,c.x2,c.y2,c.x,c.y):"S"==l?p.push(c.x2,c.y2,c.x,c.y):"Q"==l?p.push(c.x1,c.y1,c.x,c.y):"A"==l&&p.push(c.r1,c.r2,c.angle,0|c.largeArcFlag,0|c.sweepFlag,c.x,c.y),t.push(p);return t},bbox:function(){return d.parser.path.setAttribute("d",this.toString()),d.parser.path.getBBox()}}),d.Number=function(t){if(this.value=0,this.unit="","number"==typeof t)this.value=isNaN(t)?0:isFinite(t)?t:0>t?-3.4e38:3.4e38;else if("string"==typeof t){var e=t.match(d.regex.unit);e&&(this.value=parseFloat(e[1]),"%"==e[2]?this.value/=100:"s"==e[2]&&(this.value*=1e3),this.unit=e[2])}else t instanceof d.Number&&(this.value=t.value,this.unit=t.unit)},d.extend(d.Number,{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},valueOf:function(){return this.value},plus:function(t){return this.value=this+new d.Number(t),this},minus:function(t){return this.plus(-new d.Number(t))},times:function(t){return this.value=this*new d.Number(t),this},divide:function(t){return this.value=this/new d.Number(t),this},to:function(t){return"string"==typeof t&&(this.unit=t),this},morph:function(t){return this.destination=new d.Number(t),this},at:function(t){return this.destination?new d.Number(this.destination).minus(this).times(t).plus(this):this}}),d.ViewBox=function(t){var e,n,i,r,s=1,h=1,o=t.bbox(),a=(t.attr("viewBox")||"").match(/-?[\d\.]+/g),u=t,l=t;for(i=new d.Number(t.width()),r=new d.Number(t.height());"%"==i.unit;)s*=i.value,i=new d.Number(u instanceof d.Doc?u.parent().offsetWidth:u.parent().width()),u=u.parent();for(;"%"==r.unit;)h*=r.value,r=new d.Number(l instanceof d.Doc?l.parent().offsetHeight:l.parent().height()),l=l.parent();this.x=o.x,this.y=o.y,this.width=i*s,this.height=r*h,this.zoom=1,a&&(e=parseFloat(a[0]),n=parseFloat(a[1]),i=parseFloat(a[2]),r=parseFloat(a[3]),this.zoom=this.width/this.height>i/r?this.height/r:this.width/i,this.x=e,this.y=n,this.width=i,this.height=r)},d.extend(d.ViewBox,{toString:function(){return this.x+" "+this.y+" "+this.width+" "+this.height}}),d.Element=d.invent({create:function(t){this._stroke=d.defaults.attrs.stroke,(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return null!=t&&(t=new d.Number(t),t.value/=this.transform("scaleX")),this.attr("x",t)},y:function(t){return null!=t&&(t=new d.Number(t),t.value/=this.transform("scaleY")),this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var n=r(this.bbox(),t,e);return this.width(new d.Number(n.width)).height(new d.Number(n.height))},clone:function(){return u(this.node.cloneNode(!0))},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},inside:function(t,e){var n=this.bbox();return t>n.x&&e>n.y&&t<n.x+n.width&&e<n.y+n.height},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(/\s+/)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter(function(e){return e!=t}).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return d.get(this.attr(t))},parent:function(t){var e=d.adopt(this.node.parentNode);if(t)for(;!(e instanceof t);)e=d.adopt(e.node.parentNode);return e},doc:function(t){return this.parent(t||d.Doc)},"native":function(){return this.node}}}),d.BBox=d.invent({create:function(t){var e;if(this.x=0,this.y=0,this.width=0,this.height=0,t){var n=new d.Matrix(t).extract();e=t.node.getBBox?t.node.getBBox():{x:t.node.clientLeft,y:t.node.clientTop,width:t.node.clientWidth,height:t.node.clientHeight},this.x=e.x+n.x,this.y=e.y+n.y,this.width=e.width*n.scaleX,this.height=e.height*n.scaleY}l(this)},parent:d.Element,construct:{bbox:function(){return new d.BBox(this)}}}),d.RBox=d.invent({create:function(t){var e={};if(this.x=0,this.y=0,this.width=0,this.height=0,t){var n=t.doc().parent(),i=1;for(e=t.node.getBoundingClientRect(),this.x=e.left,this.y=e.top,this.x-=n.offsetLeft,this.y-=n.offsetTop;n=n.offsetParent;)this.x-=n.offsetLeft,this.y-=n.offsetTop;for(n=t;n.parent&&(n=n.parent());)n.viewbox&&(i*=n.viewbox().zoom,this.x-=n.x()||0,this.y-=n.y()||0)}this.width=e.width/=i,this.height=e.height/=i,this.x+=window.scrollX,this.y+=window.scrollY,l(this)},parent:d.Element,construct:{rbox:function(){return new d.RBox(this)}}}),[d.BBox,d.RBox].forEach(function(t){d.extend(t,{merge:function(e){var n=new t;return n.x=Math.min(this.x,e.x),n.y=Math.min(this.y,e.y),n.width=Math.max(this.x+this.width,e.x+e.width)-n.x,n.height=Math.max(this.y+this.height,e.y+e.height)-n.y,l(n)}})}),d.Matrix=d.invent({create:function(t){var e,n=h([1,0,0,1,0,0]);for(t=t&&t.node&&t.node.getCTM?t.node.getCTM():"string"==typeof t?h(t.replace(/\s/g,"").split(",")):6==arguments.length?h([].slice.call(arguments)):"object"==typeof t?t:n,e=m.length-1;e>=0;e--)this[m[e]]="number"==typeof t[m[e]]?t[m[e]]:n[m[e]]},extend:{extract:function(){var t=s(this,0,1),e=s(this,1,0),n=180/Math.PI*Math.atan2(t.y,t.x)-90;return{x:this.e,y:this.f,skewX:n,skewY:180/Math.PI*Math.atan2(e.y,e.x),scaleX:Math.sqrt(this.a*this.a+this.b*this.b),scaleY:Math.sqrt(this.c*this.c+this.d*this.d),rotation:n}},multiply:function(t){return new d.Matrix(this.native().multiply(t.native()))},inverse:function(){return new d.Matrix(this.native().inverse())},translate:function(t,e){return new d.Matrix(this.native().translate(t||0,e||0))},scale:function(t,e,n,i){return(1==arguments.length||3==arguments.length)&&(e=t),3==arguments.length&&(i=n,n=e),this.multiply(new d.Matrix(1,0,0,1,n||0,i||0)).multiply(new d.Matrix(t,0,0,e,0,0)).multiply(new d.Matrix(1,0,0,1,-n||0,-i||0))},rotate:function(t,e,n){return t=d.utils.radians(t),this.multiply(new d.Matrix(1,0,0,1,e||0,n||0)).multiply(new d.Matrix(Math.cos(t),Math.sin(t),-Math.sin(t),Math.cos(t),0,0)).multiply(new d.Matrix(1,0,0,1,-e||0,-n||0))},flip:function(t){return new d.Matrix(this.native()["flip"+t.toUpperCase()]())},skew:function(t,e){return new d.Matrix(this.native().skewX(t||0).skewY(e||0))},"native":function(){var t,e=d.parser.draw.node.createSVGMatrix();for(t=m.length-1;t>=0;t--)e[m[t]]=this[m[t]];return e},toString:function(){return"matrix("+[this.a,this.b,this.c,this.d,this.e,this.f].join()+")"}},parent:d.Element,construct:{ctm:function(){return new d.Matrix(this)}}}),d.extend(d.Element,{attr:function(t,e,n){if(null==t){for(t={},e=this.node.attributes,n=e.length-1;n>=0;n--)t[e[n].nodeName]=d.regex.isNumber.test(e[n].nodeValue)?parseFloat(e[n].nodeValue):e[n].nodeValue;return t}if("object"==typeof t)for(e in t)this.attr(e,t[e]);else if(null===e)this.node.removeAttribute(t);else{if(null==e)return e=this.node.getAttribute(t),null==e?d.defaults.attrs[t]:d.regex.isNumber.test(e)?parseFloat(e):e;"stroke-width"==t?this.attr("stroke",parseFloat(e)>0?this._stroke:null):"stroke"==t&&(this._stroke=e),("fill"==t||"stroke"==t)&&(d.regex.isImage.test(e)&&(e=this.doc().defs().image(e,0,0)),e instanceof d.Image&&(e=this.doc().defs().pattern(0,0,function(){this.add(e)}))),"number"==typeof e?e=new d.Number(e):d.Color.isColor(e)?e=new d.Color(e):Array.isArray(e)&&(e=new d.Array(e)),"leading"==t?this.leading&&this.leading(e):"string"==typeof n?this.node.setAttributeNS(n,t,e.toString()):this.node.setAttribute(t,e.toString()),!this.rebuild||"font-size"!=t&&"x"!=t||this.rebuild(t,e)}return this}}),d.extend(d.Element,{transform:function(t){if(null==t)return this.ctm().extract();if("string"==typeof t)return this.ctm().extract()[t];var e=new d.Matrix(this);return null!=t.a?e=e.multiply(new d.Matrix(t)):t.rotation?e=e.rotate(t.rotation,null==t.cx?this.bbox().cx:t.cx,null==t.cy?this.bbox().cy:t.cy):null!=t.scale||null!=t.scaleX||null!=t.scaleY?e=e.scale(null!=t.scale?t.scale:null!=t.scaleX?t.scaleX:1,null!=t.scale?t.scale:null!=t.scaleY?t.scaleY:1,null!=t.cx?t.cx:this.bbox().x,null!=t.cy?t.cy:this.bbox().y):t.skewX||t.skewY?e=e.skew(t.skewX,t.skewY):(t.x||t.y)&&(e=e.translate(t.x,t.y)),this.attr("transform",e)},untransform:function(){return this.attr("transform",null)}}),d.extend(d.Element,{style:function(e,n){if(0==arguments.length)return this.node.style.cssText||"";if(arguments.length<2)if("object"==typeof e)for(n in e)this.style(n,e[n]);else{if(!d.regex.isCss.test(e))return this.node.style[t(e)];e=e.split(";");for(var i=0;i<e.length;i++)n=e[i].split(":"),this.style(n[0].replace(/\s+/g,""),n[1])}else this.node.style[t(e)]=null===n||d.regex.isBlank.test(n)?"":n;return this}}),d.Parent=d.invent({create:function(t){this.constructor.call(this,t)},inherit:d.Element,extend:{children:function(){return d.utils.map(this.node.childNodes,function(t){return d.adopt(t)})},add:function(t,e){return this.has(t)||(e=null==e?this.children().length:e,this.node.insertBefore(t.node,this.node.childNodes[e]||null)),this},put:function(t,e){return this.add(t,e),t},has:function(t){return this.index(t)>=0},index:function(t){return this.children().indexOf(t)},get:function(t){return this.children()[t]},first:function(){return this.children()[0]},last:function(){return this.children()[this.children().length-1]},each:function(t,e){var n,i,r=this.children();for(n=0,i=r.length;i>n;n++)r[n]instanceof d.Element&&t.apply(r[n],[n,r]),e&&r[n]instanceof d.Container&&r[n].each(t,e);return this},removeElement:function(t){return this.node.removeChild(t.node),this},clear:function(){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return delete this._defs,this},defs:function(){return this.doc().defs()}}}),d.Container=d.invent({create:function(t){this.constructor.call(this,t)},inherit:d.Parent,extend:{viewbox:function(t){return 0==arguments.length?new d.ViewBox(this):(t=1==arguments.length?[t.x,t.y,t.width,t.height]:[].slice.call(arguments),this.attr("viewBox",t))}}}),d.extend(d.Parent,d.Text,{svg:function(t){var e=document.createElement("div");if(t){t=t.replace(/\n/,"").replace(/<(\w+)([^<]+?)\/>/g,"<$1$2></$1>"),e.innerHTML="<svg>"+t+"</svg>";for(var n=e.firstChild.childNodes.length-1;n>=0;n--)1==e.firstChild.childNodes[n].nodeType&&this.node.appendChild(e.firstChild.childNodes[n]);return this}var i=this.node.cloneNode(!0);return e.appendChild(i),e.innerHTML}}),d.FX=d.invent({create:function(t){this.target=t},extend:{animate:function(t,e,n){var i,r,s,h,a=this.target,u=this;return"object"==typeof t&&(n=t.delay,e=t.ease,t=t.duration),t="="==t?t:null==t?1e3:new d.Number(t).valueOf(),e=e||"<>",u.to=function(t){var n;if(t=0>t?0:t>1?1:t,null==i){i=[];for(h in u.attrs)i.push(h);if(a.morphArray&&(u._plot||i.indexOf("points")>-1)){var l,c=new a.morphArray(u._plot||u.attrs.points||a.array);u._size&&c.size(u._size.width.to,u._size.height.to),l=c.bbox(),u._x?c.move(u._x.to,l.y):u._cx&&c.move(u._cx.to-l.width/2,l.y),l=c.bbox(),u._y?c.move(l.x,u._y.to):u._cy&&c.move(l.x,u._cy.to-l.height/2),delete u._x,delete u._y,delete u._cx,delete u._cy,delete u._size,u._plot=a.array.morph(c)}}if(null==r){r=[];for(h in u.trans)r.push(h)}if(null==s){s=[];for(h in u.styles)s.push(h)}for(t="<>"==e?-Math.cos(t*Math.PI)/2+.5:">"==e?Math.sin(t*Math.PI/2):"<"==e?-Math.cos(t*Math.PI/2)+1:"-"==e?t:"function"==typeof e?e(t):t,u._plot?a.plot(u._plot.at(t)):(u._x?a.x(u._x.at(t)):u._cx&&a.cx(u._cx.at(t)),u._y?a.y(u._y.at(t)):u._cy&&a.cy(u._cy.at(t)),u._size&&a.size(u._size.width.at(t),u._size.height.at(t))),u._viewbox&&a.viewbox(u._viewbox.x.at(t),u._viewbox.y.at(t),u._viewbox.width.at(t),u._viewbox.height.at(t)),u._leading&&a.leading(u._leading.at(t)),n=i.length-1;n>=0;n--)a.attr(i[n],o(u.attrs[i[n]],t));for(n=r.length-1;n>=0;n--)a.transform(r[n],o(u.trans[r[n]],t));for(n=s.length-1;n>=0;n--)a.style(s[n],o(u.styles[s[n]],t));u._during&&u._during.call(a,t,function(e,n){return o({from:e,to:n},t)})},"number"==typeof t&&(this.timeout=setTimeout(function(){var i=(new Date).getTime();u.situation={interval:1e3/60,start:i,play:!0,finish:i+t,duration:t},u.render=function(){if(u.situation.play===!0){var i=(new Date).getTime(),r=i>u.situation.finish?1:(i-u.situation.start)/t;u.to(r),i>u.situation.finish?(u._plot&&a.plot(new d.PointArray(u._plot.destination).settle()),u._loop===!0||"number"==typeof u._loop&&u._loop>1?("number"==typeof u._loop&&--u._loop,u.animate(t,e,n)):u._after?u._after.apply(a,[u]):u.stop()):requestAnimFrame(u.render)}else requestAnimFrame(u.render)},u.render()},new d.Number(n).valueOf())),this},bbox:function(){return this.target.bbox()},attr:function(t,e){if("object"==typeof t)for(var n in t)this.attr(n,t[n]);else{var i=this.target.attr(t);this.attrs[t]=d.Color.isColor(i)?new d.Color(i).morph(e):d.regex.unit.test(i)?new d.Number(i).morph(e):{from:i,to:e}}return this},transform:function(){},style:function(t,e){if("object"==typeof t)for(var n in t)this.style(n,t[n]);else this.styles[t]={from:this.target.style(t),to:e};return this},x:function(t){return this._x=new d.Number(this.target.x()).morph(t),this},y:function(t){return this._y=new d.Number(this.target.y()).morph(t),this},cx:function(t){return this._cx=new d.Number(this.target.cx()).morph(t),this},cy:function(t){return this._cy=new d.Number(this.target.cy()).morph(t),this},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},size:function(t,e){if(this.target instanceof d.Text)this.attr("font-size",t);else{var n=this.target.bbox();this._size={width:new d.Number(n.width).morph(t),height:new d.Number(n.height).morph(e)}}return this},plot:function(t){return this._plot=t,this},leading:function(t){return this.target._leading&&(this._leading=new d.Number(this.target._leading).morph(t)),this},viewbox:function(t,e,n,i){if(this.target instanceof d.Container){var r=this.target.viewbox();this._viewbox={x:new d.Number(r.x).morph(t),y:new d.Number(r.y).morph(e),width:new d.Number(r.width).morph(n),height:new d.Number(r.height).morph(i)}}return this},update:function(t){return this.target instanceof d.Stop&&(null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new d.Number(t.offset))),this},during:function(t){return this._during=t,this},after:function(t){return this._after=t,this},loop:function(t){return this._loop=t||!0,this},stop:function(t){return t===!0?(this.animate(0),this._after&&this._after.apply(this.target,[this])):(clearTimeout(this.timeout),this.attrs={},this.trans={},this.styles={},this.situation={},delete this._x,delete this._y,delete this._cx,delete this._cy,delete this._size,delete this._plot,delete this._loop,delete this._after,delete this._during,delete this._leading,delete this._viewbox),this},pause:function(){return this.situation.play===!0&&(this.situation.play=!1,this.situation.pause=(new Date).getTime()),this},play:function(){if(this.situation.play===!1){var t=(new Date).getTime()-this.situation.pause;this.situation.finish+=t,this.situation.start+=t,this.situation.play=!0}return this}},parent:d.Element,construct:{animate:function(t,e,n){return(this.fx||(this.fx=new d.FX(this))).stop().animate(t,e,n)},stop:function(t){return this.fx&&this.fx.stop(t),this},pause:function(){return this.fx&&this.fx.pause(),this},play:function(){return this.fx&&this.fx.play(),this}}}),d.extend(d.Element,d.FX,{dx:function(t){return this.x((this.target||this).x()+t)},dy:function(t){return this.y((this.target||this).y()+t)},dmove:function(t,e){return this.dx(t).dy(e)}}),["click","dblclick","mousedown","mouseup","mouseover","mouseout","mousemove","mouseenter","mouseleave","touchstart","touchmove","touchleave","touchend","touchcancel"].forEach(function(t){d.Element.prototype[t]=function(e){var n=this;return this.node["on"+t]="function"==typeof e?function(){return e.apply(n,arguments)}:null,this}}),d.events={},d.listeners={},d.registerEvent=function(t){d.events[t]||(d.events[t]=new f(t))},d.on=function(t,e,n){var i=n.bind(t.instance||t);d.listeners[n]=i,t.addEventListener(e,i,!1)},d.off=function(t,e,n){t.removeEventListener(e,d.listeners[n],!1),delete d.listeners[n]},d.extend(d.Element,{on:function(t,e){return d.on(this.node,t,e),this},off:function(t,e){return d.off(this.node,t,e),this},fire:function(t,e){return d.events[t].detail=e,this.node.dispatchEvent(d.events[t]),delete d.events[t].detail,this}}),d.Defs=d.invent({create:"defs",inherit:d.Container}),d.G=d.invent({create:"g",inherit:d.Container,extend:{x:function(t){return this.transform(null==t?"x":{x:-this.x()+t})},y:function(t){return this.transform(null==t?"y":{y:-this.y()+t})},cx:function(t){return null==t?this.bbox().cx:this.x(t-this.bbox().width/2)},cy:function(t){return null==t?this.bbox().cy:this.y(t-this.bbox().height/2)}},construct:{group:function(){return this.put(new d.G)}}}),d.extend(d.Element,{siblings:function(){return this.parent().children()},position:function(){return this.parent().index(this)},next:function(){return this.siblings()[this.position()+1]},previous:function(){return this.siblings()[this.position()-1]},forward:function(){var t=this.position()+1,e=this.parent();return e.removeElement(this).add(this,t),e instanceof d.Doc&&e.node.appendChild(e.defs().node),this},backward:function(){var t=this.position();return t>0&&this.parent().removeElement(this).add(this,t-1),this},front:function(){var t=this.parent();return t.node.appendChild(this.node),t instanceof d.Doc&&t.node.appendChild(t.defs().node),this},back:function(){return this.position()>0&&this.parent().removeElement(this).add(this,0),this},before:function(t){t.remove();var e=this.position();return this.parent().add(t,e),this},after:function(t){t.remove();var e=this.position();return this.parent().add(t,e+1),this}}),d.Mask=d.invent({create:function(){this.constructor.call(this,d.create("mask")),this.targets=[]},inherit:d.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unmask();return delete this.targets,this.parent().removeElement(this),this}},construct:{mask:function(){return this.defs().put(new d.Mask)}}}),d.extend(d.Element,{maskWith:function(t){return this.masker=t instanceof d.Mask?t:this.parent().mask().add(t),this.masker.targets.push(this),this.attr("mask",'url("#'+this.masker.attr("id")+'")')},unmask:function(){return delete this.masker,this.attr("mask",null)}}),d.ClipPath=d.invent({create:function(){this.constructor.call(this,d.create("clipPath")),this.targets=[]},inherit:d.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unclip();return delete this.targets,this.parent().removeElement(this),this}},construct:{clip:function(){return this.defs().put(new d.ClipPath)}}}),d.extend(d.Element,{clipWith:function(t){return this.clipper=t instanceof d.ClipPath?t:this.parent().clip().add(t),this.clipper.targets.push(this),this.attr("clip-path",'url("#'+this.clipper.attr("id")+'")')},unclip:function(){return delete this.clipper,this.attr("clip-path",null)}}),d.Gradient=d.invent({create:function(t){this.constructor.call(this,d.create(t+"Gradient")),this.type=t},inherit:d.Container,extend:{from:function(t,e){return this.attr("radial"==this.type?{fx:new d.Number(t),fy:new d.Number(e)}:{x1:new d.Number(t),y1:new d.Number(e)})},to:function(t,e){return this.attr("radial"==this.type?{cx:new d.Number(t),cy:new d.Number(e)}:{x2:new d.Number(t),y2:new d.Number(e)})},radius:function(t){return"radial"==this.type?this.attr({r:new d.Number(t)}):this},at:function(t,e,n){return this.put(new d.Stop).update(t,e,n)},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},fill:function(){return"url(#"+this.id()+")"},toString:function(){return this.fill()}},construct:{gradient:function(t,e){return this.defs().gradient(t,e)}}}),d.extend(d.Defs,{gradient:function(t,e){return this.put(new d.Gradient(t)).update(e)}}),d.Stop=d.invent({create:"stop",inherit:d.Element,extend:{update:function(t){return("number"==typeof t||t instanceof d.Number)&&(t={offset:arguments[0],color:arguments[1],opacity:arguments[2]}),null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new d.Number(t.offset)),this}}}),d.Pattern=d.invent({create:"pattern",inherit:d.Container,extend:{fill:function(){return"url(#"+this.id()+")"},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},toString:function(){return this.fill()}},construct:{pattern:function(t,e,n){return this.defs().pattern(t,e,n)}}}),d.extend(d.Defs,{pattern:function(t,e,n){return this.put(new d.Pattern).update(n).attr({x:0,y:0,width:t,height:e,patternUnits:"userSpaceOnUse"})}}),d.Doc=d.invent({create:function(t){t&&(t="string"==typeof t?document.getElementById(t):t,"svg"==t.nodeName?this.constructor.call(this,t):(this.constructor.call(this,d.create("svg")),t.appendChild(this.node)),this.namespace().size("100%","100%").defs())
+/*! SVG.js v1.0.0-rc.10 MIT*/(function(){function t(t){return t.toLowerCase().replace(/-(.)/g,function(t,e){return e.toUpperCase()})}function e(t){return t.charAt(0).toUpperCase()+t.slice(1)}function n(t){return 4==t.length?["#",t.substring(1,2),t.substring(1,2),t.substring(2,3),t.substring(2,3),t.substring(3,4),t.substring(3,4)].join(""):t}function i(t){var e=t.toString(16);return 1==e.length?"0"+e:e}function r(t,e,n){return null==n?n=t.height/t.width*e:null==e&&(e=t.width/t.height*n),{width:e,height:n}}function s(t,e,n){return{x:e*t.a+n*t.c+0,y:e*t.b+n*t.d+0}}function h(t){return{a:t[0],b:t[1],c:t[2],d:t[3],e:t[4],f:t[5]}}function o(t,e){return"number"==typeof t.from?t.from+(t.to-t.from)*e:t instanceof d.Color||t instanceof d.Number?t.at(e):1>e?t.from:t.to}function a(t){for(var e=0,n=t.length,i="";n>e;e++)i+=t[e][0],null!=t[e][1]&&(i+=t[e][1],null!=t[e][2]&&(i+=" ",i+=t[e][2],null!=t[e][3]&&(i+=" ",i+=t[e][3],i+=" ",i+=t[e][4],null!=t[e][5]&&(i+=" ",i+=t[e][5],i+=" ",i+=t[e][6],null!=t[e][7]&&(i+=" ",i+=t[e][7])))));return i+" "}function u(t){for(var e=t.childNodes.length-1;e>=0;e--)t.childNodes[e]instanceof SVGElement&&u(t.childNodes[e]);return d.adopt(t).id(d.eid(t.nodeName))}function l(t){return t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function c(t){var e=t.toString().match(d.regex.reference);return e?e[1]:void 0}function f(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),n}var d=this.SVG=function(t){return d.supported?(t=new d.Doc(t),d.parser||d.prepare(t),t):void 0};if(d.ns="http://www.w3.org/2000/svg",d.xmlns="http://www.w3.org/2000/xmlns/",d.xlink="http://www.w3.org/1999/xlink",d.supported=function(){return!!document.createElementNS&&!!document.createElementNS(d.ns,"svg").createSVGRect}(),!d.supported)return!1;d.did=1e3,d.eid=function(t){return"Svgjs"+e(t)+d.did++},d.create=function(t){var e=document.createElementNS(this.ns,t);return e.setAttribute("id",this.eid(t)),e},d.extend=function(){var t,e,n,i;for(t=[].slice.call(arguments),e=t.pop(),i=t.length-1;i>=0;i--)if(t[i])for(n in e)t[i].prototype[n]=e[n];d.Set&&d.Set.inherit&&d.Set.inherit()},d.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,d.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&d.extend(e,t.extend),t.construct&&d.extend(t.parent||d.Container,t.construct),e},d.adopt=function(t){if(t.instance)return t.instance;var n;return n="svg"==t.nodeName?t.parentNode instanceof SVGElement?new d.Nested:new d.Doc:"lineairGradient"==t.nodeName?new d.Gradient("lineair"):"radialGradient"==t.nodeName?new d.Gradient("radial"):d[e(t.nodeName)]?new(d[e(t.nodeName)]):new d.Element(t),n.type=t.nodeName,n.node=t,t.instance=n,n instanceof d.Doc&&n.namespace().defs(),n},d.prepare=function(t){var e=document.getElementsByTagName("body")[0],n=(e?new d.Doc(e):t.nested()).size(2,0),i=d.create("path");n.node.appendChild(i),d.parser={body:e||t.parent(),draw:n.style("opacity:0;position:fixed;left:100%;top:100%;overflow:hidden"),poly:n.polyline().node,path:i}},d.regex={unit:/^(-?[\d\.]+)([a-z%]{0,2})$/,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^-?[\d\.]+$/,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i},d.utils={map:function(t,e){var n,i=t.length,r=[];for(n=0;i>n;n++)r.push(e(t[n]));return r},radians:function(t){return t%360*Math.PI/180},degrees:function(t){return 180*t/Math.PI%360}},d.defaults={attrs:{"fill-opacity":1,"stroke-opacity":1,"stroke-width":0,"stroke-linejoin":"miter","stroke-linecap":"butt",fill:"#000000",stroke:"#000000",opacity:1,x:0,y:0,cx:0,cy:0,width:0,height:0,r:0,rx:0,ry:0,offset:0,"stop-opacity":1,"stop-color":"#000000","font-size":16,"font-family":"Helvetica, Arial, sans-serif","text-anchor":"start"}},d.Color=function(t){var e;this.r=0,this.g=0,this.b=0,"string"==typeof t?d.regex.isRgb.test(t)?(e=d.regex.rgb.exec(t.replace(/\s/g,"")),this.r=parseInt(e[1]),this.g=parseInt(e[2]),this.b=parseInt(e[3])):d.regex.isHex.test(t)&&(e=d.regex.hex.exec(n(t)),this.r=parseInt(e[1],16),this.g=parseInt(e[2],16),this.b=parseInt(e[3],16)):"object"==typeof t&&(this.r=t.r,this.g=t.g,this.b=t.b)},d.extend(d.Color,{toString:function(){return this.toHex()},toHex:function(){return"#"+i(this.r)+i(this.g)+i(this.b)},toRgb:function(){return"rgb("+[this.r,this.g,this.b].join()+")"},brightness:function(){return this.r/255*.3+this.g/255*.59+this.b/255*.11},morph:function(t){return this.destination=new d.Color(t),this},at:function(t){return this.destination?(t=0>t?0:t>1?1:t,new d.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),d.Color.test=function(t){return t+="",d.regex.isHex.test(t)||d.regex.isRgb.test(t)},d.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},d.Color.isColor=function(t){return d.Color.isRgb(t)||d.Color.test(t)},d.Array=function(t,e){t=(t||[]).valueOf(),0==t.length&&e&&(t=e.valueOf()),this.value=this.parse(t)},d.extend(d.Array,{morph:function(t){if(this.destination=this.parse(t),this.value.length!=this.destination.length){for(var e=this.value[this.value.length-1],n=this.destination[this.destination.length-1];this.value.length>this.destination.length;)this.destination.push(n);for(;this.value.length<this.destination.length;)this.value.push(e)}return this},settle:function(){for(var t=0,e=this.value.length,n=[];e>t;t++)-1==n.indexOf(this.value[t])&&n.push(this.value[t]);return this.value=n},at:function(t){if(!this.destination)return this;for(var e=0,n=this.value.length,i=[];n>e;e++)i.push(this.value[e]+(this.destination[e]-this.value[e])*t);return new d.Array(i)},toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)},split:function(t){return t.replace(/\s+/g," ").replace(/^\s+|\s+$/g,"").split(" ")},reverse:function(){return this.value.reverse(),this}}),d.PointArray=function(t,e){this.constructor.call(this,t,e||[[0,0]])},d.PointArray.prototype=new d.Array,d.extend(d.PointArray,{toString:function(){for(var t=0,e=this.value.length,n=[];e>t;t++)n.push(this.value[t].join(","));return n.join(" ")},toLine:function(){return{x1:this.value[0][0],y1:this.value[0][1],x2:this.value[1][0],y2:this.value[1][1]}},at:function(t){if(!this.destination)return this;for(var e=0,n=this.value.length,i=[];n>e;e++)i.push([this.value[e][0]+(this.destination[e][0]-this.value[e][0])*t,this.value[e][1]+(this.destination[e][1]-this.value[e][1])*t]);return new d.PointArray(i)},parse:function(t){if(t=t.valueOf(),Array.isArray(t))return t;t=this.split(t);for(var e,n=0,i=t.length,r=[];i>n;n++)e=t[n].split(","),r.push([parseFloat(e[0]),parseFloat(e[1])]);return r},move:function(t,e){var n=this.bbox();if(t-=n.x,e-=n.y,!isNaN(t)&&!isNaN(e))for(var i=this.value.length-1;i>=0;i--)this.value[i]=[this.value[i][0]+t,this.value[i][1]+e];return this},size:function(t,e){var n,i=this.bbox();for(n=this.value.length-1;n>=0;n--)this.value[n][0]=(this.value[n][0]-i.x)*t/i.width+i.x,this.value[n][1]=(this.value[n][1]-i.y)*e/i.height+i.y;return this},bbox:function(){return d.parser.poly.setAttribute("points",this.toString()),d.parser.poly.getBBox()}}),d.PathArray=function(t,e){this.constructor.call(this,t,e||[["M",0,0]])},d.PathArray.prototype=new d.Array,d.extend(d.PathArray,{toString:function(){return a(this.value)},move:function(t,e){var n=this.bbox();if(t-=n.x,e-=n.y,!isNaN(t)&&!isNaN(e))for(var i,r=this.value.length-1;r>=0;r--)i=this.value[r][0],"M"==i||"L"==i||"T"==i?(this.value[r][1]+=t,this.value[r][2]+=e):"H"==i?this.value[r][1]+=t:"V"==i?this.value[r][1]+=e:"C"==i||"S"==i||"Q"==i?(this.value[r][1]+=t,this.value[r][2]+=e,this.value[r][3]+=t,this.value[r][4]+=e,"C"==i&&(this.value[r][5]+=t,this.value[r][6]+=e)):"A"==i&&(this.value[r][6]+=t,this.value[r][7]+=e);return this},size:function(t,e){var n,i,r=this.bbox();for(n=this.value.length-1;n>=0;n--)i=this.value[n][0],"M"==i||"L"==i||"T"==i?(this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x,this.value[n][2]=(this.value[n][2]-r.y)*e/r.height+r.y):"H"==i?this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x:"V"==i?this.value[n][1]=(this.value[n][1]-r.y)*e/r.height+r.y:"C"==i||"S"==i||"Q"==i?(this.value[n][1]=(this.value[n][1]-r.x)*t/r.width+r.x,this.value[n][2]=(this.value[n][2]-r.y)*e/r.height+r.y,this.value[n][3]=(this.value[n][3]-r.x)*t/r.width+r.x,this.value[n][4]=(this.value[n][4]-r.y)*e/r.height+r.y,"C"==i&&(this.value[n][5]=(this.value[n][5]-r.x)*t/r.width+r.x,this.value[n][6]=(this.value[n][6]-r.y)*e/r.height+r.y)):"A"==i&&(this.value[n][1]=this.value[n][1]*t/r.width,this.value[n][2]=this.value[n][2]*e/r.height,this.value[n][6]=(this.value[n][6]-r.x)*t/r.width+r.x,this.value[n][7]=(this.value[n][7]-r.y)*e/r.height+r.y);return this},parse:function(t){if(t instanceof d.PathArray)return t.valueOf();var e,n,i,r,s,h,o,u,l,c,f,p=0,m=0;for(d.parser.path.setAttribute("d","string"==typeof t?t:a(t)),f=d.parser.path.pathSegList,e=0,n=f.numberOfItems;n>e;++e)c=f.getItem(e),l=c.pathSegTypeAsLetter,"M"==l||"L"==l||"H"==l||"V"==l||"C"==l||"S"==l||"Q"==l||"T"==l||"A"==l?("x"in c&&(p=c.x),"y"in c&&(m=c.y)):("x1"in c&&(s=p+c.x1),"x2"in c&&(o=p+c.x2),"y1"in c&&(h=m+c.y1),"y2"in c&&(u=m+c.y2),"x"in c&&(p+=c.x),"y"in c&&(m+=c.y),"m"==l?f.replaceItem(d.parser.path.createSVGPathSegMovetoAbs(p,m),e):"l"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoAbs(p,m),e):"h"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoHorizontalAbs(p),e):"v"==l?f.replaceItem(d.parser.path.createSVGPathSegLinetoVerticalAbs(m),e):"c"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoCubicAbs(p,m,s,h,o,u),e):"s"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoCubicSmoothAbs(p,m,o,u),e):"q"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoQuadraticAbs(p,m,s,h),e):"t"==l?f.replaceItem(d.parser.path.createSVGPathSegCurvetoQuadraticSmoothAbs(p,m),e):"a"==l?f.replaceItem(d.parser.path.createSVGPathSegArcAbs(p,m,c.r1,c.r2,c.angle,c.largeArcFlag,c.sweepFlag),e):("z"==l||"Z"==l)&&(p=i,m=r)),("M"==l||"m"==l)&&(i=p,r=m);for(t=[],f=d.parser.path.pathSegList,e=0,n=f.numberOfItems;n>e;++e)c=f.getItem(e),l=c.pathSegTypeAsLetter,p=[l],"M"==l||"L"==l||"T"==l?p.push(c.x,c.y):"H"==l?p.push(c.x):"V"==l?p.push(c.y):"C"==l?p.push(c.x1,c.y1,c.x2,c.y2,c.x,c.y):"S"==l?p.push(c.x2,c.y2,c.x,c.y):"Q"==l?p.push(c.x1,c.y1,c.x,c.y):"A"==l&&p.push(c.r1,c.r2,c.angle,0|c.largeArcFlag,0|c.sweepFlag,c.x,c.y),t.push(p);return t},bbox:function(){return d.parser.path.setAttribute("d",this.toString()),d.parser.path.getBBox()}}),d.Number=d.invent({create:function(t){if(this.value=0,this.unit="","number"==typeof t)this.value=isNaN(t)?0:isFinite(t)?t:0>t?-3.4e38:3.4e38;else if("string"==typeof t){var e=t.match(d.regex.unit);e&&(this.value=parseFloat(e[1]),"%"==e[2]?this.value/=100:"s"==e[2]&&(this.value*=1e3),this.unit=e[2])}else t instanceof d.Number&&(this.value=t.value,this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},valueOf:function(){return this.value},plus:function(t){return this.value=this+new d.Number(t),this},minus:function(t){return this.plus(-new d.Number(t))},times:function(t){return this.value=this*new d.Number(t),this},divide:function(t){return this.value=this/new d.Number(t),this},to:function(t){return"string"==typeof t&&(this.unit=t),this},morph:function(t){return this.destination=new d.Number(t),this},at:function(t){return this.destination?new d.Number(this.destination).minus(this).times(t).plus(this):this}}}),d.ViewBox=function(t){var e,n,i,r,s=1,h=1,o=t.bbox(),a=(t.attr("viewBox")||"").match(/-?[\d\.]+/g),u=t,l=t;for(i=new d.Number(t.width()),r=new d.Number(t.height());"%"==i.unit;)s*=i.value,i=new d.Number(u instanceof d.Doc?u.parent().offsetWidth:u.parent().width()),u=u.parent();for(;"%"==r.unit;)h*=r.value,r=new d.Number(l instanceof d.Doc?l.parent().offsetHeight:l.parent().height()),l=l.parent();this.x=o.x,this.y=o.y,this.width=i*s,this.height=r*h,this.zoom=1,a&&(e=parseFloat(a[0]),n=parseFloat(a[1]),i=parseFloat(a[2]),r=parseFloat(a[3]),this.zoom=this.width/this.height>i/r?this.height/r:this.width/i,this.x=e,this.y=n,this.width=i,this.height=r)},d.extend(d.ViewBox,{toString:function(){return this.x+" "+this.y+" "+this.width+" "+this.height}}),d.Element=d.invent({create:function(t){this._stroke=d.defaults.attrs.stroke,(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return null!=t&&(t=new d.Number(t),t.value/=this.transform("scaleX")),this.attr("x",t)},y:function(t){return null!=t&&(t=new d.Number(t),t.value/=this.transform("scaleY")),this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var n=r(this.bbox(),t,e);return this.width(new d.Number(n.width)).height(new d.Number(n.height))},clone:function(){return u(this.node.cloneNode(!0))},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},inside:function(t,e){var n=this.bbox();return t>n.x&&e>n.y&&t<n.x+n.width&&e<n.y+n.height},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(/\s+/)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter(function(e){return e!=t}).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return d.get(this.attr(t))},parent:function(t){var e=d.adopt(this.node.parentNode);if(t)for(;!(e instanceof t);)e=d.adopt(e.node.parentNode);return e},doc:function(t){return this.parent(t||d.Doc)},"native":function(){return this.node}}}),d.BBox=d.invent({create:function(t){var e;if(this.x=0,this.y=0,this.width=0,this.height=0,t){var n=new d.Matrix(t).extract();e=t.node.getBBox?t.node.getBBox():{x:t.node.clientLeft,y:t.node.clientTop,width:t.node.clientWidth,height:t.node.clientHeight},this.x=e.x+n.x,this.y=e.y+n.y,this.width=e.width*n.scaleX,this.height=e.height*n.scaleY}l(this)},parent:d.Element,construct:{bbox:function(){return new d.BBox(this)}}}),d.RBox=d.invent({create:function(t){var e={};if(this.x=0,this.y=0,this.width=0,this.height=0,t){var n=t.doc().parent(),i=1;for(e=t.node.getBoundingClientRect(),this.x=e.left,this.y=e.top,this.x-=n.offsetLeft,this.y-=n.offsetTop;n=n.offsetParent;)this.x-=n.offsetLeft,this.y-=n.offsetTop;for(n=t;n.parent&&(n=n.parent());)n.viewbox&&(i*=n.viewbox().zoom,this.x-=n.x()||0,this.y-=n.y()||0)}this.width=e.width/=i,this.height=e.height/=i,this.x+=window.scrollX,this.y+=window.scrollY,l(this)},parent:d.Element,construct:{rbox:function(){return new d.RBox(this)}}}),[d.BBox,d.RBox].forEach(function(t){d.extend(t,{merge:function(e){var n=new t;return n.x=Math.min(this.x,e.x),n.y=Math.min(this.y,e.y),n.width=Math.max(this.x+this.width,e.x+e.width)-n.x,n.height=Math.max(this.y+this.height,e.y+e.height)-n.y,l(n)}})}),d.Matrix=d.invent({create:function(t){var e,n=h([1,0,0,1,0,0]);for(t=t&&t.node&&t.node.getCTM?t.node.getCTM():"string"==typeof t?h(t.replace(/\s/g,"").split(",")):6==arguments.length?h([].slice.call(arguments)):"object"==typeof t?t:n,e=m.length-1;e>=0;e--)this[m[e]]="number"==typeof t[m[e]]?t[m[e]]:n[m[e]]},extend:{extract:function(){var t=s(this,0,1),e=s(this,1,0),n=180/Math.PI*Math.atan2(t.y,t.x)-90;return{x:this.e,y:this.f,skewX:n,skewY:180/Math.PI*Math.atan2(e.y,e.x),scaleX:Math.sqrt(this.a*this.a+this.b*this.b),scaleY:Math.sqrt(this.c*this.c+this.d*this.d),rotation:n}},multiply:function(t){return new d.Matrix(this.native().multiply(t.native()))},inverse:function(){return new d.Matrix(this.native().inverse())},translate:function(t,e){return new d.Matrix(this.native().translate(t||0,e||0))},scale:function(t,e,n,i){return(1==arguments.length||3==arguments.length)&&(e=t),3==arguments.length&&(i=n,n=e),this.multiply(new d.Matrix(1,0,0,1,n||0,i||0)).multiply(new d.Matrix(t,0,0,e,0,0)).multiply(new d.Matrix(1,0,0,1,-n||0,-i||0))},rotate:function(t,e,n){return t=d.utils.radians(t),this.multiply(new d.Matrix(1,0,0,1,e||0,n||0)).multiply(new d.Matrix(Math.cos(t),Math.sin(t),-Math.sin(t),Math.cos(t),0,0)).multiply(new d.Matrix(1,0,0,1,-e||0,-n||0))},flip:function(t){return new d.Matrix(this.native()["flip"+t.toUpperCase()]())},skew:function(t,e){return new d.Matrix(this.native().skewX(t||0).skewY(e||0))},"native":function(){var t,e=d.parser.draw.node.createSVGMatrix();for(t=m.length-1;t>=0;t--)e[m[t]]=this[m[t]];return e},toString:function(){return"matrix("+[this.a,this.b,this.c,this.d,this.e,this.f].join()+")"}},parent:d.Element,construct:{ctm:function(){return new d.Matrix(this)}}}),d.extend(d.Element,{attr:function(t,e,n){if(null==t){for(t={},e=this.node.attributes,n=e.length-1;n>=0;n--)t[e[n].nodeName]=d.regex.isNumber.test(e[n].nodeValue)?parseFloat(e[n].nodeValue):e[n].nodeValue;return t}if("object"==typeof t)for(e in t)this.attr(e,t[e]);else if(null===e)this.node.removeAttribute(t);else{if(null==e)return e=this.node.getAttribute(t),null==e?d.defaults.attrs[t]:d.regex.isNumber.test(e)?parseFloat(e):e;"stroke-width"==t?this.attr("stroke",parseFloat(e)>0?this._stroke:null):"stroke"==t&&(this._stroke=e),("fill"==t||"stroke"==t)&&(d.regex.isImage.test(e)&&(e=this.doc().defs().image(e,0,0)),e instanceof d.Image&&(e=this.doc().defs().pattern(0,0,function(){this.add(e)}))),"number"==typeof e?e=new d.Number(e):d.Color.isColor(e)?e=new d.Color(e):Array.isArray(e)&&(e=new d.Array(e)),"leading"==t?this.leading&&this.leading(e):"string"==typeof n?this.node.setAttributeNS(n,t,e.toString()):this.node.setAttribute(t,e.toString()),!this.rebuild||"font-size"!=t&&"x"!=t||this.rebuild(t,e)}return this}}),d.extend(d.Element,{transform:function(t){if(null==t)return this.ctm().extract();if("string"==typeof t)return this.ctm().extract()[t];var e=new d.Matrix(this);return null!=t.a?e=e.multiply(new d.Matrix(t)):t.rotation?e=e.rotate(t.rotation,null==t.cx?this.bbox().cx:t.cx,null==t.cy?this.bbox().cy:t.cy):null!=t.scale||null!=t.scaleX||null!=t.scaleY?e=e.scale(null!=t.scale?t.scale:null!=t.scaleX?t.scaleX:1,null!=t.scale?t.scale:null!=t.scaleY?t.scaleY:1,null!=t.cx?t.cx:this.bbox().x,null!=t.cy?t.cy:this.bbox().y):t.skewX||t.skewY?e=e.skew(t.skewX,t.skewY):(t.x||t.y)&&(e=e.translate(t.x,t.y)),this.attr("transform",e)},untransform:function(){return this.attr("transform",null)}}),d.extend(d.Element,{style:function(e,n){if(0==arguments.length)return this.node.style.cssText||"";if(arguments.length<2)if("object"==typeof e)for(n in e)this.style(n,e[n]);else{if(!d.regex.isCss.test(e))return this.node.style[t(e)];e=e.split(";");for(var i=0;i<e.length;i++)n=e[i].split(":"),this.style(n[0].replace(/\s+/g,""),n[1])}else this.node.style[t(e)]=null===n||d.regex.isBlank.test(n)?"":n;return this}}),d.Parent=d.invent({create:function(t){this.constructor.call(this,t)},inherit:d.Element,extend:{children:function(){return d.utils.map(this.node.childNodes,function(t){return d.adopt(t)})},add:function(t,e){return this.has(t)||(e=null==e?this.children().length:e,this.node.insertBefore(t.node,this.node.childNodes[e]||null)),this},put:function(t,e){return this.add(t,e),t},has:function(t){return this.index(t)>=0},index:function(t){return this.children().indexOf(t)},get:function(t){return this.children()[t]},first:function(){return this.children()[0]},last:function(){return this.children()[this.children().length-1]},each:function(t,e){var n,i,r=this.children();for(n=0,i=r.length;i>n;n++)r[n]instanceof d.Element&&t.apply(r[n],[n,r]),e&&r[n]instanceof d.Container&&r[n].each(t,e);return this},removeElement:function(t){return this.node.removeChild(t.node),this},clear:function(){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return delete this._defs,this},defs:function(){return this.doc().defs()}}}),d.Container=d.invent({create:function(t){this.constructor.call(this,t)},inherit:d.Parent,extend:{viewbox:function(t){return 0==arguments.length?new d.ViewBox(this):(t=1==arguments.length?[t.x,t.y,t.width,t.height]:[].slice.call(arguments),this.attr("viewBox",t))}}}),d.extend(d.Parent,d.Text,{svg:function(t){var e=document.createElement("div");if(t){t=t.replace(/\n/,"").replace(/<(\w+)([^<]+?)\/>/g,"<$1$2></$1>"),e.innerHTML="<svg>"+t+"</svg>";for(var n=e.firstChild.childNodes.length-1;n>=0;n--)1==e.firstChild.childNodes[n].nodeType&&this.node.appendChild(e.firstChild.childNodes[n]);return this}var i=this.node.cloneNode(!0);return e.appendChild(i),e.innerHTML}}),d.FX=d.invent({create:function(t){this.target=t},extend:{animate:function(t,e,n){var i,r,s,h,a=this.target,u=this;return"object"==typeof t&&(n=t.delay,e=t.ease,t=t.duration),t="="==t?t:null==t?1e3:new d.Number(t).valueOf(),e=e||"<>",u.to=function(t){var n;if(t=0>t?0:t>1?1:t,null==i){i=[];for(h in u.attrs)i.push(h);if(a.morphArray&&(u._plot||i.indexOf("points")>-1)){var l,c=new a.morphArray(u._plot||u.attrs.points||a.array);u._size&&c.size(u._size.width.to,u._size.height.to),l=c.bbox(),u._x?c.move(u._x.to,l.y):u._cx&&c.move(u._cx.to-l.width/2,l.y),l=c.bbox(),u._y?c.move(l.x,u._y.to):u._cy&&c.move(l.x,u._cy.to-l.height/2),delete u._x,delete u._y,delete u._cx,delete u._cy,delete u._size,u._plot=a.array.morph(c)}}if(null==r){r=[];for(h in u.trans)r.push(h)}if(null==s){s=[];for(h in u.styles)s.push(h)}for(t="<>"==e?-Math.cos(t*Math.PI)/2+.5:">"==e?Math.sin(t*Math.PI/2):"<"==e?-Math.cos(t*Math.PI/2)+1:"-"==e?t:"function"==typeof e?e(t):t,u._plot?a.plot(u._plot.at(t)):(u._x?a.x(u._x.at(t)):u._cx&&a.cx(u._cx.at(t)),u._y?a.y(u._y.at(t)):u._cy&&a.cy(u._cy.at(t)),u._size&&a.size(u._size.width.at(t),u._size.height.at(t))),u._viewbox&&a.viewbox(u._viewbox.x.at(t),u._viewbox.y.at(t),u._viewbox.width.at(t),u._viewbox.height.at(t)),u._leading&&a.leading(u._leading.at(t)),n=i.length-1;n>=0;n--)a.attr(i[n],o(u.attrs[i[n]],t));for(n=r.length-1;n>=0;n--)a.transform(r[n],o(u.trans[r[n]],t));for(n=s.length-1;n>=0;n--)a.style(s[n],o(u.styles[s[n]],t));u._during&&u._during.call(a,t,function(e,n){return o({from:e,to:n},t)})},"number"==typeof t&&(this.timeout=setTimeout(function(){var i=(new Date).getTime();u.situation={interval:1e3/60,start:i,play:!0,finish:i+t,duration:t},u.render=function(){if(u.situation.play===!0){var i=(new Date).getTime(),r=i>u.situation.finish?1:(i-u.situation.start)/t;u.to(r),i>u.situation.finish?(u._plot&&a.plot(new d.PointArray(u._plot.destination).settle()),u._loop===!0||"number"==typeof u._loop&&u._loop>1?("number"==typeof u._loop&&--u._loop,u.animate(t,e,n)):u._after?u._after.apply(a,[u]):u.stop()):requestAnimFrame(u.render)}else requestAnimFrame(u.render)},u.render()},new d.Number(n).valueOf())),this},bbox:function(){return this.target.bbox()},attr:function(t,e){if("object"==typeof t)for(var n in t)this.attr(n,t[n]);else{var i=this.target.attr(t);this.attrs[t]=d.Color.isColor(i)?new d.Color(i).morph(e):d.regex.unit.test(i)?new d.Number(i).morph(e):{from:i,to:e}}return this},transform:function(){},style:function(t,e){if("object"==typeof t)for(var n in t)this.style(n,t[n]);else this.styles[t]={from:this.target.style(t),to:e};return this},x:function(t){return this._x=new d.Number(this.target.x()).morph(t),this},y:function(t){return this._y=new d.Number(this.target.y()).morph(t),this},cx:function(t){return this._cx=new d.Number(this.target.cx()).morph(t),this},cy:function(t){return this._cy=new d.Number(this.target.cy()).morph(t),this},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},size:function(t,e){if(this.target instanceof d.Text)this.attr("font-size",t);else{var n=this.target.bbox();this._size={width:new d.Number(n.width).morph(t),height:new d.Number(n.height).morph(e)}}return this},plot:function(t){return this._plot=t,this},leading:function(t){return this.target._leading&&(this._leading=new d.Number(this.target._leading).morph(t)),this},viewbox:function(t,e,n,i){if(this.target instanceof d.Container){var r=this.target.viewbox();this._viewbox={x:new d.Number(r.x).morph(t),y:new d.Number(r.y).morph(e),width:new d.Number(r.width).morph(n),height:new d.Number(r.height).morph(i)}}return this},update:function(t){return this.target instanceof d.Stop&&(null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new d.Number(t.offset))),this},during:function(t){return this._during=t,this},after:function(t){return this._after=t,this},loop:function(t){return this._loop=t||!0,this},stop:function(t){return t===!0?(this.animate(0),this._after&&this._after.apply(this.target,[this])):(clearTimeout(this.timeout),this.attrs={},this.trans={},this.styles={},this.situation={},delete this._x,delete this._y,delete this._cx,delete this._cy,delete this._size,delete this._plot,delete this._loop,delete this._after,delete this._during,delete this._leading,delete this._viewbox),this},pause:function(){return this.situation.play===!0&&(this.situation.play=!1,this.situation.pause=(new Date).getTime()),this},play:function(){if(this.situation.play===!1){var t=(new Date).getTime()-this.situation.pause;this.situation.finish+=t,this.situation.start+=t,this.situation.play=!0}return this}},parent:d.Element,construct:{animate:function(t,e,n){return(this.fx||(this.fx=new d.FX(this))).stop().animate(t,e,n)},stop:function(t){return this.fx&&this.fx.stop(t),this},pause:function(){return this.fx&&this.fx.pause(),this},play:function(){return this.fx&&this.fx.play(),this}}}),d.extend(d.Element,d.FX,{dx:function(t){return this.x((this.target||this).x()+t)},dy:function(t){return this.y((this.target||this).y()+t)},dmove:function(t,e){return this.dx(t).dy(e)}}),["click","dblclick","mousedown","mouseup","mouseover","mouseout","mousemove","mouseenter","mouseleave","touchstart","touchmove","touchleave","touchend","touchcancel"].forEach(function(t){d.Element.prototype[t]=function(e){var n=this;return this.node["on"+t]="function"==typeof e?function(){return e.apply(n,arguments)}:null,this}}),d.events={},d.listeners={},d.registerEvent=function(t){d.events[t]||(d.events[t]=new f(t))},d.on=function(t,e,n){var i=n.bind(t.instance||t);d.listeners[n]=i,t.addEventListener(e,i,!1)},d.off=function(t,e,n){t.removeEventListener(e,d.listeners[n],!1),delete d.listeners[n]},d.extend(d.Element,{on:function(t,e){return d.on(this.node,t,e),this},off:function(t,e){return d.off(this.node,t,e),this},fire:function(t,e){return d.events[t].detail=e,this.node.dispatchEvent(d.events[t]),delete d.events[t].detail,this}}),d.Defs=d.invent({create:"defs",inherit:d.Container}),d.G=d.invent({create:"g",inherit:d.Container,extend:{x:function(t){return this.transform(null==t?"x":{x:-this.x()+t})},y:function(t){return this.transform(null==t?"y":{y:-this.y()+t})},cx:function(t){return null==t?this.bbox().cx:this.x(t-this.bbox().width/2)},cy:function(t){return null==t?this.bbox().cy:this.y(t-this.bbox().height/2)}},construct:{group:function(){return this.put(new d.G)}}}),d.extend(d.Element,{siblings:function(){return this.parent().children()},position:function(){return this.parent().index(this)},next:function(){return this.siblings()[this.position()+1]},previous:function(){return this.siblings()[this.position()-1]},forward:function(){var t=this.position()+1,e=this.parent();return e.removeElement(this).add(this,t),e instanceof d.Doc&&e.node.appendChild(e.defs().node),this},backward:function(){var t=this.position();return t>0&&this.parent().removeElement(this).add(this,t-1),this},front:function(){var t=this.parent();return t.node.appendChild(this.node),t instanceof d.Doc&&t.node.appendChild(t.defs().node),this},back:function(){return this.position()>0&&this.parent().removeElement(this).add(this,0),this},before:function(t){t.remove();var e=this.position();return this.parent().add(t,e),this},after:function(t){t.remove();var e=this.position();return this.parent().add(t,e+1),this}}),d.Mask=d.invent({create:function(){this.constructor.call(this,d.create("mask")),this.targets=[]},inherit:d.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unmask();return delete this.targets,this.parent().removeElement(this),this}},construct:{mask:function(){return this.defs().put(new d.Mask)}}}),d.extend(d.Element,{maskWith:function(t){return this.masker=t instanceof d.Mask?t:this.parent().mask().add(t),this.masker.targets.push(this),this.attr("mask",'url("#'+this.masker.attr("id")+'")')},unmask:function(){return delete this.masker,this.attr("mask",null)}}),d.ClipPath=d.invent({create:function(){this.constructor.call(this,d.create("clipPath")),this.targets=[]},inherit:d.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unclip();return delete this.targets,this.parent().removeElement(this),this}},construct:{clip:function(){return this.defs().put(new d.ClipPath)}}}),d.extend(d.Element,{clipWith:function(t){return this.clipper=t instanceof d.ClipPath?t:this.parent().clip().add(t),this.clipper.targets.push(this),this.attr("clip-path",'url("#'+this.clipper.attr("id")+'")')},unclip:function(){return delete this.clipper,this.attr("clip-path",null)}}),d.Gradient=d.invent({create:function(t){this.constructor.call(this,d.create(t+"Gradient")),this.type=t},inherit:d.Container,extend:{from:function(t,e){return this.attr("radial"==this.type?{fx:new d.Number(t),fy:new d.Number(e)}:{x1:new d.Number(t),y1:new d.Number(e)})},to:function(t,e){return this.attr("radial"==this.type?{cx:new d.Number(t),cy:new d.Number(e)}:{x2:new d.Number(t),y2:new d.Number(e)})},radius:function(t){return"radial"==this.type?this.attr({r:new d.Number(t)}):this},at:function(t,e,n){return this.put(new d.Stop).update(t,e,n)},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},fill:function(){return"url(#"+this.id()+")"},toString:function(){return this.fill()}},construct:{gradient:function(t,e){return this.defs().gradient(t,e)}}}),d.extend(d.Defs,{gradient:function(t,e){return this.put(new d.Gradient(t)).update(e)}}),d.Stop=d.invent({create:"stop",inherit:d.Element,extend:{update:function(t){return("number"==typeof t||t instanceof d.Number)&&(t={offset:arguments[0],color:arguments[1],opacity:arguments[2]}),null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new d.Number(t.offset)),this}}}),d.Pattern=d.invent({create:"pattern",inherit:d.Container,extend:{fill:function(){return"url(#"+this.id()+")"},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},toString:function(){return this.fill()}},construct:{pattern:function(t,e,n){return this.defs().pattern(t,e,n)}}}),d.extend(d.Defs,{pattern:function(t,e,n){return this.put(new d.Pattern).update(n).attr({x:0,y:0,width:t,height:e,patternUnits:"userSpaceOnUse"})}}),d.Doc=d.invent({create:function(t){t&&(t="string"==typeof t?document.getElementById(t):t,"svg"==t.nodeName?this.constructor.call(this,t):(this.constructor.call(this,d.create("svg")),t.appendChild(this.node)),this.namespace().size("100%","100%").defs())
 },inherit:d.Container,extend:{namespace:function(){return this.attr({xmlns:d.ns,version:"1.1"}).attr("xmlns:xlink",d.xlink,d.xmlns)},defs:function(){if(!this._defs){var t;this._defs=(t=this.node.getElementsByTagName("defs")[0])?d.adopt(t):new d.Defs,this.node.appendChild(this._defs.node)}return this._defs},parent:function(){return"#document"==this.node.parentNode.nodeName?null:this.node.parentNode}}}),d.extend(d.Doc,{spof:function(){if(this.doSpof){var t=this.node.getScreenCTM();t&&this.style("left",-t.e%1+"px").style("top",-t.f%1+"px")}return this},fixSubPixelOffset:function(){var t=this;return this.doSpof=!0,d.on(window,"resize",function(){t.spof()}),this.spof()}}),d.Shape=d.invent({create:function(t){this.constructor.call(this,t)},inherit:d.Element}),d.Symbol=d.invent({create:"symbol",inherit:d.Container,construct:{symbol:function(){return this.defs().put(new d.Symbol)}}}),d.Use=d.invent({create:"use",inherit:d.Shape,extend:{element:function(t){return this.target=t,this.attr("href","#"+t,d.xlink)}},construct:{use:function(t){return this.put(new d.Use).element(t)}}}),d.Rect=d.invent({create:"rect",inherit:d.Shape,construct:{rect:function(t,e){return this.put((new d.Rect).size(t,e))}}}),d.Circle=d.invent({create:"circle",inherit:d.Shape,construct:{circle:function(t){return this.put(new d.Circle).rx(new d.Number(t).divide(2)).move(0,0)}}}),d.extend(d.Circle,d.FX,{rx:function(t){return this.attr("r",t)},ry:function(t){return this.rx(t)}}),d.Ellipse=d.invent({create:"ellipse",inherit:d.Shape,construct:{ellipse:function(t,e){return this.put(new d.Ellipse).size(t,e).move(0,0)}}}),d.extend(d.Ellipse,d.Rect,d.FX,{rx:function(t){return this.attr("rx",t)},ry:function(t){return this.attr("ry",t)}}),d.extend(d.Circle,d.Ellipse,{x:function(t){return null==t?this.cx()-this.rx():this.cx(t+this.rx())},y:function(t){return null==t?this.cy()-this.ry():this.cy(t+this.ry())},cx:function(t){return null==t?this.attr("cx"):this.attr("cx",new d.Number(t).divide(this.transform("scaleX")))},cy:function(t){return null==t?this.attr("cy"):this.attr("cy",new d.Number(t).divide(this.transform("scaleY")))},width:function(t){return null==t?2*this.rx():this.rx(new d.Number(t).divide(2))},height:function(t){return null==t?2*this.ry():this.ry(new d.Number(t).divide(2))},size:function(t,e){var n=r(this.bbox(),t,e);return this.rx(new d.Number(n.width).divide(2)).ry(new d.Number(n.height).divide(2))}}),d.Line=d.invent({create:"line",inherit:d.Shape,extend:{array:function(){return new d.PointArray([[this.attr("x1"),this.attr("y1")],[this.attr("x2"),this.attr("y2")]])},plot:function(t,e,n,i){return t=4==arguments.length?{x1:t,y1:e,x2:n,y2:i}:new d.PointArray(t).toLine(),this.attr(t)},move:function(t,e){return this.attr(this.array().move(t,e).toLine())},size:function(t,e){var n=r(this.bbox(),t,e);return this.attr(this.array().size(n.width,n.height).toLine())}},construct:{line:function(t,e,n,i){return this.put(new d.Line).plot(t,e,n,i)}}}),d.Polyline=d.invent({create:"polyline",inherit:d.Shape,construct:{polyline:function(t){return this.put(new d.Polyline).plot(t)}}}),d.Polygon=d.invent({create:"polygon",inherit:d.Shape,construct:{polygon:function(t){return this.put(new d.Polygon).plot(t)}}}),d.extend(d.Polyline,d.Polygon,{array:function(){return this._array||(this._array=new d.PointArray(this.attr("points")))},plot:function(t){return this.attr("points",this._array=new d.PointArray(t))},move:function(t,e){return this.attr("points",this.array().move(t,e))},size:function(t,e){var n=r(this.bbox(),t,e);return this.attr("points",this.array().size(n.width,n.height))}}),d.extend(d.Line,d.Polyline,d.Polygon,{morphArray:d.PointArray,x:function(t){return null==t?this.bbox().x:this.move(t,this.bbox().y)},y:function(t){return null==t?this.bbox().y:this.move(this.bbox().x,t)},width:function(t){var e=this.bbox();return null==t?e.width:this.size(t,e.height)},height:function(t){var e=this.bbox();return null==t?e.height:this.size(e.width,t)}}),d.Path=d.invent({create:"path",inherit:d.Shape,extend:{morphArray:d.PathArray,array:function(){return this._array||(this._array=new d.PathArray(this.attr("d")))},plot:function(t){return this.attr("d",this._array=new d.PathArray(t))},move:function(t,e){return this.attr("d",this.array().move(t,e))},x:function(t){return null==t?this.bbox().x:this.move(t,this.bbox().y)},y:function(t){return null==t?this.bbox().y:this.move(this.bbox().x,t)},size:function(t,e){var n=r(this.bbox(),t,e);return this.attr("d",this.array().size(n.width,n.height))},width:function(t){return null==t?this.bbox().width:this.size(t,this.bbox().height)},height:function(t){return null==t?this.bbox().height:this.size(this.bbox().width,t)}},construct:{path:function(t){return this.put(new d.Path).plot(t)}}}),d.Image=d.invent({create:"image",inherit:d.Shape,extend:{load:function(t){if(!t)return this;var e=this,n=document.createElement("img");return n.onload=function(){var i=e.doc(d.Pattern);0==e.width()&&0==e.height()&&e.size(n.width,n.height),i&&0==i.width()&&0==i.height()&&i.size(e.width(),e.height()),"function"==typeof e._loaded&&e._loaded.call(e,{width:n.width,height:n.height,ratio:n.width/n.height,url:t})},this.attr("href",n.src=this.src=t,d.xlink)},loaded:function(t){return this._loaded=t,this}},construct:{image:function(t,e,n){return this.put(new d.Image).load(t).size(e||0,n||e||0)}}}),d.Text=d.invent({create:function(){this.constructor.call(this,d.create("text")),this._leading=new d.Number(1.3),this._rebuild=!0,this._build=!1,this.attr("font-family",d.defaults.attrs["font-family"])},inherit:d.Shape,extend:{x:function(t){return null==t?this.attr("x"):(this.textPath||this.lines.each(function(){this.newLined&&this.x(t)}),this.attr("x",t))},y:function(t){var e=this.attr("y"),n="number"==typeof e?e-this.bbox().y:0;return null==t?"number"==typeof e?e-n:e:this.attr("y","number"==typeof t?t+n:t)},cx:function(t){return null==t?this.bbox().cx:this.x(t-this.bbox().width/2)},cy:function(t){return null==t?this.bbox().cy:this.y(t-this.bbox().height/2)},text:function(t){if("undefined"==typeof t)return this.content;if(this.clear().build(!0),"function"==typeof t)t.call(this,this);else{t=(this.content=t).split("\n");for(var e=0,n=t.length;n>e;e++)this.tspan(t[e]).newLine()}return this.build(!1).rebuild()},size:function(t){return this.attr("font-size",t).rebuild()},leading:function(t){return null==t?this._leading:(this._leading=new d.Number(t),this.rebuild())},rebuild:function(t){if("boolean"==typeof t&&(this._rebuild=t),this._rebuild){var e=this;this.lines.each(function(){this.newLined&&(this.textPath||this.attr("x",e.attr("x")),this.attr("dy",e._leading*new d.Number(e.attr("font-size"))))}),this.fire("rebuild")}return this},build:function(t){return this._build=!!t,this}},construct:{text:function(t){return this.put(new d.Text).text(t)},plain:function(t){return this.put(new d.Text).plain(t)}}}),d.Tspan=d.invent({create:"tspan",inherit:d.Shape,extend:{text:function(t){return"function"==typeof t?t.call(this,this):this.plain(t),this},dx:function(t){return this.attr("dx",t)},dy:function(t){return this.attr("dy",t)},newLine:function(){var t=this.doc(d.Text);return this.newLined=!0,this.dy(t._leading*t.attr("font-size")).attr("x",t.x())}}}),d.extend(d.Text,d.Tspan,{plain:function(t){return this._build===!1&&this.clear(),this.node.appendChild(document.createTextNode(this.content=t)),this},tspan:function(t){var e=(this.textPath||this).node,n=new d.Tspan;return this._build===!1&&this.clear(),e.appendChild(n.node),this instanceof d.Text&&this.lines.add(n),n.text(t)},clear:function(){for(var t=(this.textPath||this).node;t.hasChildNodes();)t.removeChild(t.lastChild);return this instanceof d.Text&&(delete this.lines,this.lines=new d.Set,this.content=""),this},length:function(){return this.node.getComputedTextLength()}}),d.registerEvent("rebuild"),d.TextPath=d.invent({create:"textPath",inherit:d.Element,parent:d.Text,construct:{path:function(t){for(this.textPath=new d.TextPath;this.node.hasChildNodes();)this.textPath.node.appendChild(this.node.firstChild);return this.node.appendChild(this.textPath.node),this.track=this.doc().defs().path(t),this.textPath.parent=this,this.textPath.attr("href","#"+this.track,d.xlink),this},plot:function(t){return this.track&&this.track.plot(t),this}}}),d.Nested=d.invent({create:function(){this.constructor.call(this,d.create("svg")),this.style("overflow","visible")},inherit:d.Container,construct:{nested:function(){return this.put(new d.Nested)}}}),d.A=d.invent({create:"a",inherit:d.Container,extend:{to:function(t){return this.attr("href",t,d.xlink)},show:function(t){return this.attr("show",t,d.xlink)},target:function(t){return this.attr("target",t)}},construct:{link:function(t){return this.put(new d.A).to(t)}}}),d.extend(d.Element,{linkTo:function(t){var e=new d.A;return"function"==typeof t?t.call(e,e):e.to(t),this.parent().put(e).put(this)}}),d.Marker=d.invent({create:"marker",inherit:d.Container,extend:{width:function(t){return this.attr("markerWidth",t)},height:function(t){return this.attr("markerHeight",t)},ref:function(t,e){return this.attr("refX",t).attr("refY",e)},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},toString:function(){return"url(#"+this.id()+")"}},construct:{marker:function(t,e,n){return this.defs().marker(t,e,n)}}}),d.extend(d.Defs,{marker:function(t,e,n){return this.put(new d.Marker).size(t,e).ref(t/2,e/2).viewbox(0,0,t,e).attr("orient","auto").update(n)}}),d.extend(d.Line,d.Polyline,d.Polygon,d.Path,{marker:function(t,e,n,i){var r=["marker"];return"all"!=t&&r.push(t),r=r.join("-"),t=arguments[1]instanceof d.Marker?arguments[1]:this.doc().marker(e,n,i),this.attr(r,t)}});var p={stroke:["color","width","opacity","linecap","linejoin","miterlimit","dasharray","dashoffset"],fill:["color","opacity","rule"],prefix:function(t,e){return"color"==e?t:t+"-"+e}};["fill","stroke"].forEach(function(t){var e,n={};n[t]=function(n){if("string"==typeof n||d.Color.isRgb(n)||n&&"function"==typeof n.fill)this.attr(t,n);else for(e=p[t].length-1;e>=0;e--)null!=n[p[t][e]]&&this.attr(p.prefix(t,p[t][e]),n[p[t][e]]);return this},d.extend(d.Element,d.FX,n)}),d.extend(d.Element,d.FX,{rotate:function(t,e,n){return this.transform({rotation:t,cx:e,cy:n})},skew:function(t,e){return this.transform({skewX:t,skewY:e})},scale:function(t,e,n,i){return this.transform(1==arguments.length||3==arguments.length?{scale:t,cx:e,cy:n}:{scaleX:t,scaleY:e,cx:n,cy:i})},translate:function(t,e){return this.transform({x:t,y:e})},matrix:function(t){return this.attr("transform",new d.Matrix(t))},opacity:function(t){return this.attr("opacity",t)}}),d.extend(d.Rect,d.Ellipse,d.Circle,d.FX,{radius:function(t,e){return this.rx(t).ry(null==e?t:e)}}),d.extend(d.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(t){return this.node.getPointAtLength(t)}}),d.extend(d.Parent,d.Text,d.FX,{font:function(t){for(var e in t)"leading"==e?this.leading(t[e]):"anchor"==e?this.attr("text-anchor",t[e]):"size"==e||"family"==e||"weight"==e||"stretch"==e||"variant"==e||"style"==e?this.attr("font-"+e,t[e]):this.attr(e,t[e]);return this}}),d.Set=d.invent({create:function(t){Array.isArray(t)?this.members=t:this.clear()},extend:{add:function(){var t,e,n=[].slice.call(arguments);for(t=0,e=n.length;e>t;t++)this.members.push(n[t]);return this},remove:function(t){var e=this.index(t);return e>-1&&this.members.splice(e,1),this},each:function(t){for(var e=0,n=this.members.length;n>e;e++)t.apply(this.members[e],[e,this.members]);return this},clear:function(){return this.members=[],this},has:function(t){return this.index(t)>=0},index:function(t){return this.members.indexOf(t)},get:function(t){return this.members[t]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members},bbox:function(){var t=new d.BBox;if(0==this.members.length)return t;var e=this.members[0].rbox();return t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height,this.each(function(){t=t.merge(this.rbox())}),t}},construct:{set:function(t){return new d.Set(t)}}}),d.SetFX=d.invent({create:function(t){this.set=t}}),d.Set.inherit=function(){var t,e=[];for(var t in d.Shape.prototype)"function"==typeof d.Shape.prototype[t]&&"function"!=typeof d.Set.prototype[t]&&e.push(t);e.forEach(function(t){d.Set.prototype[t]=function(){for(var e=0,n=this.members.length;n>e;e++)this.members[e]&&"function"==typeof this.members[e][t]&&this.members[e][t].apply(this.members[e],arguments);return"animate"==t?this.fx||(this.fx=new d.SetFX(this)):this}}),e=[];for(var t in d.FX.prototype)"function"==typeof d.FX.prototype[t]&&"function"!=typeof d.SetFX.prototype[t]&&e.push(t);e.forEach(function(t){d.SetFX.prototype[t]=function(){for(var e=0,n=this.set.members.length;n>e;e++)this.set.members[e].fx[t].apply(this.set.members[e].fx,arguments);return this}})},d.extend(d.Element,{data:function(t,e,n){if("object"==typeof t)for(e in t)this.data(e,t[e]);else if(arguments.length<2)try{return JSON.parse(this.attr("data-"+t))}catch(i){return this.attr("data-"+t)}else this.attr("data-"+t,null===e?null:n===!0||"string"==typeof e||"number"==typeof e?e:JSON.stringify(e));return this}}),d.extend(d.Element,{remember:function(t,e){if("object"==typeof arguments[0])for(var e in t)this.remember(e,t[e]);else{if(1==arguments.length)return this.memory()[t];this.memory()[t]=e}return this},forget:function(){if(0==arguments.length)this._memory={};else for(var t=arguments.length-1;t>=0;t--)delete this.memory()[arguments[t]];return this},memory:function(){return this._memory||(this._memory={})}}),d.get=function(t){var e=document.getElementById(c(t)||t);return e?d.adopt(e):void 0},d.select=function(t,e){return new d.Set(d.utils.map((e||document).querySelectorAll(t),function(t){return d.adopt(t)}))},d.extend(d.Parent,{select:function(t){return d.select(t,this.node)}}),"function"==typeof define&&define.amd?define(function(){return d}):"undefined"!=typeof exports&&(exports.SVG=d);var m="abcdef".split("");window.requestAnimFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.msRequestAnimationFrame||function(t){window.setTimeout(t,1e3/60)}}(),"function"!=typeof f&&(f.prototype=window.Event.prototype,window.CustomEvent=f)}).call(this);
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
deleted file mode 100644 (file)
index 816ef51..0000000
+++ /dev/null
@@ -1,2967 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>SVG.js</title>
-    
-    <link rel="stylesheet" type="text/css" href="svgjs.css">
-    
-    
-
-    
-
-    <!-- Typekit -->
-    
-      <script type="text/javascript">
-        (function() {
-          var config = {
-            kitId: 'hjp0pft',
-            scriptTimeout: 3000
-          };
-          var h=document.getElementsByTagName("html")[0];h.className+=" wf-loading";var t=setTimeout(function(){h.className=h.className.replace(/( |^)wf-loading( |$)/g,"");h.className+=" wf-inactive"},config.scriptTimeout);var tk=document.createElement("script");tk.src='//use.typekit.net/'+config.kitId+'.js';tk.type="text/javascript";tk.async="true";tk.onload=tk.onreadystatechange=function(){var a=this.readyState;if(a&&a!="complete"&&a!="loaded")return;clearTimeout(t);try{Typekit.load(config)}catch(b){}};var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(tk,s)
-        })();
-      </script>
-    
-  </head>
-  <body><div id="container">
-  <div id="nav">
-    
-      <div id="header">
-        <a href="#" id="logo">SVG.js</a>
-      </div>
-    
-    <ul id="sections">
-      
-        <li>
-          <a href="#usage">Usage</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#usage/create-a-svg-document">Create a SVG document</a>
-                </li>
-              
-                <li>
-                  <a href="#usage/checking-for-svg-support">Checking for SVG support</a>
-                </li>
-              
-                <li>
-                  <a href="#usage/svg-document">SVG document</a>
-                </li>
-              
-                <li>
-                  <a href="#usage/sub-pixel-offset-fix">Sub pixel offset fix</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#parent-elements">Parent elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#parent-elements/main-svg-document">Main svg document</a>
-                </li>
-              
-                <li>
-                  <a href="#parent-elements/nested-svg">Nested svg</a>
-                </li>
-              
-                <li>
-                  <a href="#parent-elements/groups">Groups</a>
-                </li>
-              
-                <li>
-                  <a href="#parent-elements/hyperlink">Hyperlink</a>
-                </li>
-              
-                <li>
-                  <a href="#parent-elements/defs">Defs</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#rect">Rect</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#rect/radius">radius()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#circle">Circle</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#circle/radius">radius()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#ellipse">Ellipse</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#ellipse/radius">radius()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#line">Line</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#line/plot">plot()</a>
-                </li>
-              
-                <li>
-                  <a href="#line/array">array()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#polyline">Polyline</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#polyline/plot">plot()</a>
-                </li>
-              
-                <li>
-                  <a href="#polyline/array">array()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#polygon">Polygon</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#polygon/plot">plot()</a>
-                </li>
-              
-                <li>
-                  <a href="#polygon/array">array()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#path">Path</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#path/plot">plot()</a>
-                </li>
-              
-                <li>
-                  <a href="#path/array">array()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#image">Image</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#image/load">load()</a>
-                </li>
-              
-                <li>
-                  <a href="#image/loaded">loaded()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#text">Text</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#text/text">text()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/tspan">tspan()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/plain">plain()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/font">font()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/leading">leading()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/build">build()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/rebuild">rebuild()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/clear">clear()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/length">length()</a>
-                </li>
-              
-                <li>
-                  <a href="#text/lines">lines</a>
-                </li>
-              
-                <li>
-                  <a href="#text/events">events</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#tspan">Tspan</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#tspan/text">text()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/tspan">tspan()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/plain">plain()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/dx">dx()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/dy">dy()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/newline">newLine()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/clear">clear()</a>
-                </li>
-              
-                <li>
-                  <a href="#tspan/length">length()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#textpath">TextPath</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#textpath/track">track</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#use">Use</a>
-          
-        </li>
-      
-        <li>
-          <a href="#symbol">Symbol</a>
-          
-        </li>
-      
-        <li>
-          <a href="#referencing-elements">Referencing elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#referencing-elements/by-id">By id</a>
-                </li>
-              
-                <li>
-                  <a href="#referencing-elements/using-css-selectors">Using CSS selectors</a>
-                </li>
-              
-                <li>
-                  <a href="#referencing-elements/using-jquery">Using jQuery</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#circular-reference">Circular reference</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#circular-reference/node">node</a>
-                </li>
-              
-                <li>
-                  <a href="#circular-reference/instance">instance</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#parent-reference">Parent reference</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#parent-reference/parent">parent()</a>
-                </li>
-              
-                <li>
-                  <a href="#parent-reference/doc">doc()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#child-references">Child references</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#child-references/first">first()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/last">last()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/children">children()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/each">each()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/has">has()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/index">index()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/get">get()</a>
-                </li>
-              
-                <li>
-                  <a href="#child-references/clear">clear()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#attribute-references">Attribute references</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#attribute-references/reference">reference()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#manipulating-elements">Manipulating elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#manipulating-elements/attr">attr()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/transform">transform()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/style">style()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/classes">classes()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/hasclass">hasClass()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/addclass">addClass()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/removeclass">removeClass()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/toggleclass">toggleClass()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/move">move()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/x">x()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/y">y()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/dmove">dmove()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/dx">dx()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/dy">dy()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/center">center()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/cx">cx()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/cy">cy()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/size">size()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/width">width()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/height">height()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/hide">hide()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/show">show()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/visible">visible()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/clone">clone()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/remove">remove()</a>
-                </li>
-              
-                <li>
-                  <a href="#manipulating-elements/replace">replace()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#inserting-elements">Inserting elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#inserting-elements/add">add()</a>
-                </li>
-              
-                <li>
-                  <a href="#inserting-elements/put">put()</a>
-                </li>
-              
-                <li>
-                  <a href="#inserting-elements/addto">addTo()</a>
-                </li>
-              
-                <li>
-                  <a href="#inserting-elements/putin">putIn()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#geometry">Geometry</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#geometry/viewbox">viewbox()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/bbox">bbox()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/rbox">rbox()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/ctm">ctm()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/inside">inside()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/length">length()</a>
-                </li>
-              
-                <li>
-                  <a href="#geometry/pointat">pointAt()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#animating-elements">Animating elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#animating-elements/animatable-method-chain">Animatable method chain</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/easing">easing</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/animate">animate()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/pause">pause()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/play">play()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/stop">stop()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/during">during()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/loop">loop()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/after">after()</a>
-                </li>
-              
-                <li>
-                  <a href="#animating-elements/to">to()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#syntax-sugar">Syntax sugar</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#syntax-sugar/fill">fill()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/stroke">stroke()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/opacity">opacity()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/rotate">rotate()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/skew">skew()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/scale">scale()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/translate">translate()</a>
-                </li>
-              
-                <li>
-                  <a href="#syntax-sugar/radius">radius()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#masking-elements">Masking elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#masking-elements/maskwith">maskWith()</a>
-                </li>
-              
-                <li>
-                  <a href="#masking-elements/mask">mask()</a>
-                </li>
-              
-                <li>
-                  <a href="#masking-elements/unmask">unmask()</a>
-                </li>
-              
-                <li>
-                  <a href="#masking-elements/remove">remove()</a>
-                </li>
-              
-                <li>
-                  <a href="#masking-elements/masker">masker</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#clipping-elements">Clipping elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#clipping-elements/clipwith">clipWith()</a>
-                </li>
-              
-                <li>
-                  <a href="#clipping-elements/clip">clip()</a>
-                </li>
-              
-                <li>
-                  <a href="#clipping-elements/unclip">unclip()</a>
-                </li>
-              
-                <li>
-                  <a href="#clipping-elements/remove">remove()</a>
-                </li>
-              
-                <li>
-                  <a href="#clipping-elements/clipper">clipper</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#arranging-elements">Arranging elements</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#arranging-elements/front">front()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/back">back()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/forward">forward()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/backward">backward()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/siblings">siblings()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/position">position()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/next">next()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/previous">previous()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/before">before()</a>
-                </li>
-              
-                <li>
-                  <a href="#arranging-elements/after">after()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#sets">Sets</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#sets/add">add()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/each">each()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/has">has()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/index">index()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/get">get()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/first">first()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/last">last()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/bbox">bbox()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/remove">remove()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/clear">clear()</a>
-                </li>
-              
-                <li>
-                  <a href="#sets/animate">animate()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#gradient">Gradient</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#gradient/gradient">gradient()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/at">at()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/from">from()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/to">to()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/radius">radius()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/update">update()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/get">get()</a>
-                </li>
-              
-                <li>
-                  <a href="#gradient/fill">fill()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#pattern">Pattern</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#pattern/pattern">pattern()</a>
-                </li>
-              
-                <li>
-                  <a href="#pattern/update">update()</a>
-                </li>
-              
-                <li>
-                  <a href="#pattern/fill">fill()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#marker">Marker</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#marker/marker">marker()</a>
-                </li>
-              
-                <li>
-                  <a href="#marker/ref">ref()</a>
-                </li>
-              
-                <li>
-                  <a href="#marker/update">update()</a>
-                </li>
-              
-                <li>
-                  <a href="#marker/width">width()</a>
-                </li>
-              
-                <li>
-                  <a href="#marker/height">height()</a>
-                </li>
-              
-                <li>
-                  <a href="#marker/size">size()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#data">Data</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#data/setting">Setting</a>
-                </li>
-              
-                <li>
-                  <a href="#data/getting">Getting</a>
-                </li>
-              
-                <li>
-                  <a href="#data/removing">Removing</a>
-                </li>
-              
-                <li>
-                  <a href="#data/sustaining-data-types">Sustaining data types</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#memory">Memory</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#memory/remember">remember()</a>
-                </li>
-              
-                <li>
-                  <a href="#memory/forget">forget()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#events">Events</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#events/basic-events">Basic events</a>
-                </li>
-              
-                <li>
-                  <a href="#events/event-listeners">Event listeners</a>
-                </li>
-              
-                <li>
-                  <a href="#events/custom-events">Custom events</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#numbers">Numbers</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#numbers/plus">plus()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/minus">minus()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/times">times()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/divide">divide()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/to">to()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/morph">morph()</a>
-                </li>
-              
-                <li>
-                  <a href="#numbers/at">at()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#colors">Colors</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#colors/tohex">toHex()</a>
-                </li>
-              
-                <li>
-                  <a href="#colors/torgb">toRgb()</a>
-                </li>
-              
-                <li>
-                  <a href="#colors/brightness">brightness()</a>
-                </li>
-              
-                <li>
-                  <a href="#colors/morph">morph()</a>
-                </li>
-              
-                <li>
-                  <a href="#colors/at">at()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#arrays">Arrays</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#arrays/svg-array">SVG.Array</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/svg-pointarray">SVG.PointArray</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/svg-patharray">SVG.PathArray</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/morph">morph()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/at">at()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/settle">settle()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/move">move()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/size">size()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/reverse">reverse()</a>
-                </li>
-              
-                <li>
-                  <a href="#arrays/bbox">bbox()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#matrices">Matrices</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#matrices/svg-matrix">SVG.Matrix</a>
-                </li>
-              
-                <li>
-                  <a href="#matrices/extract">extract()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#extending-functionality">Extending functionality</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#extending-functionality/svg-invent">SVG.invent()</a>
-                </li>
-              
-                <li>
-                  <a href="#extending-functionality/svg-extend">SVG.extend()</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#plugins">Plugins</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#plugins/absorb">absorb</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/draggable">draggable</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/easing">easing</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/export">export</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/filter">filter</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/foreignobject">foreignobject</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/import">import</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/math">math</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/path">path</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/shapes">shapes</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/topath">topath</a>
-                </li>
-              
-                <li>
-                  <a href="#plugins/wiml">wiml</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#contributing">Contributing</a>
-          
-        </li>
-      
-        <li>
-          <a href="#building">Building</a>
-          
-        </li>
-      
-        <li>
-          <a href="#compatibility">Compatibility</a>
-          
-            <ul>
-              
-                <li>
-                  <a href="#compatibility/desktop">Desktop</a>
-                </li>
-              
-                <li>
-                  <a href="#compatibility/mobile">Mobile</a>
-                </li>
-              
-            </ul>
-          
-        </li>
-      
-        <li>
-          <a href="#acknowledgements-thanks">Acknowledgements &amp; Thanks</a>
-          
-        </li>
-      
-    </ul>
-    
-    
-  </div>
-  <div id="content">
-    
-    <h1 id="svg-js">SVG.js</h1>
-<p>A lightweight library for manipulating and animating SVG.</p>
-<p>Svg.js has no dependencies and aims to be as small as possible.</p>
-<p>Svg.js is licensed under the terms of the MIT License.</p>
-<p>See <a href="http://svgjs.com">svgjs.com</a> for an introduction, <a href="http://documentup.com/wout/SVG.js">documentation</a> and <a href="http://svgjs.com/test">some action</a>.</p>
-<p><a href="https://www.gittip.com/wout/"><img src="http://files.wout.co.uk/github/gittip.png" alt="Wout on Gittip"></a></p>
-<h2 id='usage' id="usage">Usage</h2 id='usage'>
-<h3 id='usage/create-a-svg-document' id="create-a-svg-document">Create a SVG document</h3 id='usage/create-a-svg-document'>
-<p>Use the <code>SVG()</code> function to create a SVG document within a given html element:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>).size(<span class="number">300</span>, <span class="number">300</span>)
-<span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>).attr({ fill: <span class="string">'#f06'</span> })</code></pre>
-<p>The first argument can either be an id of the element or the selected element itself.
-This will generate the following output:</p>
-<pre><code class="lang-html"><span class="tag">&lt;<span class="title">div</span> <span class="attribute">id</span>=<span class="value">"drawing"</span>&gt;</span>
-    <span class="tag">&lt;<span class="title">svg</span> <span class="attribute">xmlns</span>=<span class="value">"http://www.w3.org/2000/svg"</span> <span class="attribute">version</span>=<span class="value">"1.1"</span> <span class="attribute">xmlns:xlink</span>=<span class="value">"http://www.w3.org/1999/xlink"</span> <span class="attribute">width</span>=<span class="value">"300"</span> <span class="attribute">height</span>=<span class="value">"300"</span>&gt;</span>
-        <span class="tag">&lt;<span class="title">rect</span> <span class="attribute">width</span>=<span class="value">"100"</span> <span class="attribute">height</span>=<span class="value">"100"</span> <span class="attribute">fill</span>=<span class="value">"#f06"</span>&gt;</span><span class="tag">&lt;/<span class="title">rect</span>&gt;</span>
-    <span class="tag">&lt;/<span class="title">svg</span>&gt;</span>
-<span class="tag">&lt;/<span class="title">div</span>&gt;</span></code></pre>
-<p>By default the svg drawing follows the dimensions of its parent, in this case <code>#drawing</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>).size(<span class="string">'100%'</span>, <span class="string">'100%'</span>)</code></pre>
-<h3 id='usage/checking-for-svg-support' id="checking-for-svg-support">Checking for SVG support</h3 id='usage/checking-for-svg-support'>
-<p>By default this library assumes the client&#39;s browser supports SVG. You can test support as follows:</p>
-<pre><code class="lang-javascript"><span class="keyword">if</span> (SVG.supported) {
-  <span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>)
-  <span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>)
-} <span class="keyword">else</span> {
-  alert(<span class="string">'SVG not supported'</span>)
-}</code></pre>
-<h3 id='usage/svg-document' id="svg-document">SVG document</h3 id='usage/svg-document'>
-<p>Svg.js also works outside of the HTML DOM, inside an SVG document for example:</p>
-<pre><code class="lang-xml"><span class="pi">&lt;?xml version="1.0" encoding="utf-8" ?&gt;</span>
-<span class="tag">&lt;<span class="title">svg</span> <span class="attribute">id</span>=<span class="value">"drawing"</span> <span class="attribute">xmlns</span>=<span class="value">"http://www.w3.org/2000/svg"</span> <span class="attribute">xmlns:xlink</span>=<span class="value">"http://www.w3.org/1999/xlink"</span> <span class="attribute">version</span>=<span class="value">"1.1"</span> &gt;</span>
-  <span class="tag">&lt;<span class="title">script</span> <span class="attribute">type</span>=<span class="value">"text/javascript"</span> <span class="attribute">xlink:href</span>=<span class="value">"svg.min.js"</span>&gt;</span><span class="javascript"></span><span class="tag">&lt;/<span class="title">script</span>&gt;</span>
-  <span class="tag">&lt;<span class="title">script</span> <span class="attribute">type</span>=<span class="value">"text/javascript"</span>&gt;</span><span class="javascript">
-    &lt;![CDATA[
-      <span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>)
-      draw.rect(<span class="number">100</span>,<span class="number">100</span>).animate().fill(<span class="string">'#f03'</span>).move(<span class="number">100</span>,<span class="number">100</span>)
-    ]]&gt;
-  </span><span class="tag">&lt;/<span class="title">script</span>&gt;</span>
-<span class="tag">&lt;/<span class="title">svg</span>&gt;</span></code></pre>
-<h3 id='usage/sub-pixel-offset-fix' id="sub-pixel-offset-fix">Sub pixel offset fix</h3 id='usage/sub-pixel-offset-fix'>
-<p>By default sub pixel offset won&#39;t be corrected. To enable it, call the <code>fixSubPixelOffset()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>).fixSubPixelOffset()</code></pre>
-<h2 id='parent-elements' id="parent-elements">Parent elements</h2 id='parent-elements'>
-<h3 id='parent-elements/main-svg-document' id="main-svg-document">Main svg document</h3 id='parent-elements/main-svg-document'>
-<p>The main SVG.js initializer function creates a root svg node in the given element and retuns an instance of <code>SVG.Doc</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Doc</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Doc</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Parent</code></em></p>
-<h3 id='parent-elements/nested-svg' id="nested-svg">Nested svg</h3 id='parent-elements/nested-svg'>
-<p>With this feature you can nest svg documents within each other. Nested svg documents have exactly the same features as the main, top-level svg document:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> nested = draw.nested()
-
-<span class="keyword">var</span> rect = nested.rect(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Nested</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Nested</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Parent</code></em></p>
-<h3 id='parent-elements/groups' id="groups">Groups</h3 id='parent-elements/groups'>
-<p>Grouping elements is useful if you want to transform a set of elements as if it were one. All element within a group maintain their position relative to the group they belong to. A group has all the same element methods as the root svg document:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> group = draw.group()
-group.path(<span class="string">'M10,20L30,40'</span>)</code></pre>
-<p>Existing elements from the svg document can also be added to a group:</p>
-<pre><code class="lang-javascript">group.add(rect)</code></pre>
-<p><strong>Note:</strong> Groups do not have a geometry of their own, it&#39;s inherited from their content. Therefore groups do not listen to <code>x</code>, <code>y</code>, <code>width</code> and <code>height</code> attributes. If that is what you are looking for, use a <code>nested()</code> svg instead.</p>
-<p><strong><code>returns</code>: <code>SVG.G</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.G</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Parent</code></em></p>
-<h3 id='parent-elements/hyperlink' id="hyperlink">Hyperlink</h3 id='parent-elements/hyperlink'>
-<p>A hyperlink or <code>&lt;a&gt;</code> tag creates a container that enables a link on all children:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> link = draw.link(<span class="string">'http://svgjs.com'</span>)
-<span class="keyword">var</span> rect = link.rect(<span class="number">100</span>, <span class="number">100</span>)</code></pre>
-<p>The link url can be updated with the <code>to()</code> method:</p>
-<pre><code class="lang-javascript">link.to(<span class="string">'http://apple.com'</span>)</code></pre>
-<p>Furthermore, the link element has a <code>show()</code> method to create the <code>xlink:show</code> attribute:</p>
-<pre><code class="lang-javascript">link.show(<span class="string">'replace'</span>)</code></pre>
-<p>And the <code>target()</code> method to create the <code>target</code> attribute:</p>
-<pre><code class="lang-javascript">link.target(<span class="string">'_blank'</span>)</code></pre>
-<p>Elements can also be linked the other way around with the <code>linkTo()</code> method:</p>
-<pre><code class="lang-javascript">rect.linkTo(<span class="string">'http://svgjs.com'</span>)</code></pre>
-<p>Alternatively a block can be passed instead of a url for more options on the link element:</p>
-<pre><code class="lang-javascript">rect.linkTo(<span class="keyword">function</span>(link) {
-  link.to(<span class="string">'http://svgjs.com'</span>).target(<span class="string">'_blank'</span>)
-})</code></pre>
-<p><strong><code>returns</code>: <code>SVG.A</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.A</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Parent</code></em></p>
-<h3 id='parent-elements/defs' id="defs">Defs</h3 id='parent-elements/defs'>
-<p>The <code>&lt;defs&gt;</code> element is a container element for referenced elements. Elements that are descendants of a ‘defs’ are not rendered directly. The <code>&lt;defs&gt;</code> node lives in the main <code>&lt;svg&gt;</code> document and can be accessed with the <code>defs()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> defs = draw.defs()</code></pre>
-<p>The defs are also availabel on any other element through the <code>doc()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> defs = rect.doc().defs()</code></pre>
-<p>The defs node works exactly the same as groups.</p>
-<p><strong><code>returns</code>: <code>SVG.Defs</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Defs</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Parent</code></em></p>
-<h2 id='rect' id="rect">Rect</h2 id='rect'>
-<p>Rects have two arguments, their <code>width</code> and <code>height</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Rect</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Rect</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='rect/radius' id="radius-">radius()</h3 id='rect/radius'>
-<p>Rects can also have rounded corners:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">10</span>)</code></pre>
-<p>This will set the <code>rx</code> and <code>ry</code> attributes to <code>10</code>. To set <code>rx</code> and <code>ry</code> individually:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">10</span>, <span class="number">20</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='circle' id="circle">Circle</h2 id='circle'>
-<p>The only argument necessary for a circle is the diameter:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> circle = draw.circle(<span class="number">100</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Circle</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Circle</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='circle/radius' id="radius-">radius()</h3 id='circle/radius'>
-<p>Circles can also be redefined by their radius:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">75</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='ellipse' id="ellipse">Ellipse</h2 id='ellipse'>
-<p>Ellipses, like rects, have two arguments, their <code>width</code> and <code>height</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">200</span>, <span class="number">100</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Ellipse</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Ellipse</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='ellipse/radius' id="radius-">radius()</h3 id='ellipse/radius'>
-<p>Ellipses can also be redefined by their radii:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">75</span>, <span class="number">50</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='line' id="line">Line</h2 id='line'>
-<p>Create a line from point A to point B:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> line = draw.line(<span class="number">0</span>, <span class="number">0</span>, <span class="number">100</span>, <span class="number">150</span>).stroke({ width: <span class="number">1</span> })</code></pre>
-<p>Creating a line element can be done in four ways. Look at the <code>plot()</code> method to see all the possiblilities.</p>
-<p><strong><code>returns</code>: <code>SVG.Line</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Line</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='line/plot' id="plot-">plot()</h3 id='line/plot'>
-<p>Updating a line is done with the <code>plot()</code> method:</p>
-<pre><code class="lang-javascript">line.plot(<span class="number">50</span>, <span class="number">30</span>, <span class="number">100</span>, <span class="number">150</span>)</code></pre>
-<p>Alternatively it also accepts a point string:</p>
-<pre><code class="lang-javascript">line.plot(<span class="string">'0,0 100,150'</span>)</code></pre>
-<p>Or a point array:</p>
-<pre><code class="lang-javascript">line.plot([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">150</span>]])</code></pre>
-<p>Or an instance of <code>SVG.PointArray</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> array = <span class="keyword">new</span> SVG.PointArray([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">150</span>]])
-line.plot(array)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='line/array' id="array-">array()</h3 id='line/array'>
-<p>References the <code>SVG.PointArray</code> instance. This method is rather intended for internal use:</p>
-<pre><code class="lang-javascript">polyline.array()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.PointArray</code></strong></p>
-<h2 id='polyline' id="polyline">Polyline</h2 id='polyline'>
-<p>The polyline element defines a set of connected straight line segments. Typically, polyline elements define open shapes:</p>
-<pre><code class="lang-javascript"><span class="comment">// polyline('x,y x,y x,y')</span>
-<span class="keyword">var</span> polyline = draw.polyline(<span class="string">'0,0 100,50 50,100'</span>).fill(<span class="string">'none'</span>).stroke({ width: <span class="number">1</span> })</code></pre>
-<p>Polyline strings consist of a list of points separated by spaces: <code>x,y x,y x,y</code>.</p>
-<p>As an alternative an array of points will work as well:</p>
-<pre><code class="lang-javascript"><span class="comment">// polyline([[x,y], [x,y], [x,y]])</span>
-<span class="keyword">var</span> polyline = draw.polyline([[<span class="number">0</span>,<span class="number">0</span>], [<span class="number">100</span>,<span class="number">50</span>], [<span class="number">50</span>,<span class="number">100</span>]]).fill(<span class="string">'none'</span>).stroke({ width: <span class="number">1</span> })</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Polyline</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Polyline</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='polyline/plot' id="plot-">plot()</h3 id='polyline/plot'>
-<p>Polylines can be updated using the <code>plot()</code> method:</p>
-<pre><code class="lang-javascript">polyline.plot([[<span class="number">0</span>,<span class="number">0</span>], [<span class="number">100</span>,<span class="number">50</span>], [<span class="number">50</span>,<span class="number">100</span>], [<span class="number">150</span>,<span class="number">50</span>], [<span class="number">200</span>,<span class="number">50</span>]])</code></pre>
-<p>The <code>plot()</code> method can also be animated:</p>
-<pre><code class="lang-javascript">polyline.animate(<span class="number">3000</span>).plot([[<span class="number">0</span>,<span class="number">0</span>], [<span class="number">100</span>,<span class="number">50</span>], [<span class="number">50</span>,<span class="number">100</span>], [<span class="number">150</span>,<span class="number">50</span>], [<span class="number">200</span>,<span class="number">50</span>], [<span class="number">250</span>,<span class="number">100</span>], [<span class="number">300</span>,<span class="number">50</span>], [<span class="number">350</span>,<span class="number">50</span>]])</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='polyline/array' id="array-">array()</h3 id='polyline/array'>
-<p>References the <code>SVG.PointArray</code> instance. This method is rather intended for internal use:</p>
-<pre><code class="lang-javascript">polyline.array()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.PointArray</code></strong></p>
-<h2 id='polygon' id="polygon">Polygon</h2 id='polygon'>
-<p>The polygon element, unlike the polyline element, defines a closed shape consisting of a set of connected straight line segments:</p>
-<pre><code class="lang-javascript"><span class="comment">// polygon('x,y x,y x,y')</span>
-<span class="keyword">var</span> polygon = draw.polygon(<span class="string">'0,0 100,50 50,100'</span>).fill(<span class="string">'none'</span>).stroke({ width: <span class="number">1</span> })</code></pre>
-<p>Polygon strings are exactly the same as polyline strings. There is no need to close the shape as the first and last point will be connected automatically.</p>
-<p><strong><code>returns</code>: <code>SVG.Polygon</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Polygon</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='polygon/plot' id="plot-">plot()</h3 id='polygon/plot'>
-<p>Like polylines, polygons can be updated using the <code>plot()</code> method:</p>
-<pre><code class="lang-javascript">polygon.plot([[<span class="number">0</span>,<span class="number">0</span>], [<span class="number">100</span>,<span class="number">50</span>], [<span class="number">50</span>,<span class="number">100</span>], [<span class="number">150</span>,<span class="number">50</span>], [<span class="number">200</span>,<span class="number">50</span>]])</code></pre>
-<p>The <code>plot()</code> method can also be animated:</p>
-<pre><code class="lang-javascript">polygon.animate(<span class="number">3000</span>).plot([[<span class="number">0</span>,<span class="number">0</span>], [<span class="number">100</span>,<span class="number">50</span>], [<span class="number">50</span>,<span class="number">100</span>], [<span class="number">150</span>,<span class="number">50</span>], [<span class="number">200</span>,<span class="number">50</span>], [<span class="number">250</span>,<span class="number">100</span>], [<span class="number">300</span>,<span class="number">50</span>], [<span class="number">350</span>,<span class="number">50</span>]])</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='polygon/array' id="array-">array()</h3 id='polygon/array'>
-<p>References the <code>SVG.PointArray</code> instance. This method is rather intended for internal use:</p>
-<pre><code class="lang-javascript">polygon.array()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.PointArray</code></strong></p>
-<h2 id='path' id="path">Path</h2 id='path'>
-<p>The path string is similar to the polygon string but much more complex in order to support curves:</p>
-<pre><code class="lang-javascript">draw.path(<span class="string">'M 100 200 C 200 100 300  0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Path</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Path</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<p>For more details on path data strings, please refer to the SVG documentation:
-<a href="http://www.w3.org/TR/SVG/paths.html#PathData">http://www.w3.org/TR/SVG/paths.html#PathData</a></p>
-<h3 id='path/plot' id="plot-">plot()</h3 id='path/plot'>
-<p>Paths can be updated using the <code>plot()</code> method:</p>
-<pre><code class="lang-javascript">path.plot(<span class="string">'M100,200L300,400'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='path/array' id="array-">array()</h3 id='path/array'>
-<p>References the <code>SVG.PathArray</code> instance. This method is rather intended for internal use:</p>
-<pre><code class="lang-javascript">path.array()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.PathArray</code></strong></p>
-<h2 id='image' id="image">Image</h2 id='image'>
-<p>Creating images is as you might expect:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> image = draw.image(<span class="string">'/path/to/image.jpg'</span>)</code></pre>
-<p>If you know the size of the image, those parameters can be passed as the second and third arguments:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> image = draw.image(<span class="string">'/path/to/image.jpg'</span>, <span class="number">200</span>, <span class="number">300</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Image</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Image</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='image/load' id="load-">load()</h3 id='image/load'>
-<p>Loading another image can be done with the <code>load()</code> method:</p>
-<pre><code class="lang-javascript">draw.image(<span class="string">'/path/to/another/image.jpg'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='image/loaded' id="loaded-">loaded()</h3 id='image/loaded'>
-<p>If you don&#39;t know the size of the image, obviously you will have to wait for the image to be <code>loaded</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> image = draw.image(<span class="string">'/path/to/image.jpg'</span>).loaded(<span class="keyword">function</span>(loader) {
-  <span class="keyword">this</span>.size(loader.width, loader.height)
-})</code></pre>
-<p>The returned <code>loader</code> object as first the argument of the loaded method contains four values:</p>
-<ul>
-<li><code>width</code></li>
-<li><code>height</code></li>
-<li><code>ratio</code> (width / height)</li>
-<li><code>url</code></li>
-</ul>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='text' id="text">Text</h2 id='text'>
-<p>Unlike html, text in svg is much harder to tame. There is no way to create flowing text, so newlines should be entered manually. In SVG.js there are two ways to create text elements.</p>
-<p>The first and easiest method is to provide a string of text, split by newlines:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="string">"Lorem ipsum dolor sit amet consectetur.\nCras sodales imperdiet auctor."</span>)</code></pre>
-<p>This will automatically create a block of text and insert newlines where necessary.</p>
-<p>The second method will give you much more control but requires a bit more code:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="keyword">function</span>(add) {
-  add.tspan(<span class="string">'Lorem ipsum dolor sit amet '</span>).newLine()
-  add.tspan(<span class="string">'consectetur'</span>).fill(<span class="string">'#f06'</span>)
-  add.tspan(<span class="string">'.'</span>)
-  add.tspan(<span class="string">'Cras sodales imperdiet auctor.'</span>).newLine().dx(<span class="number">20</span>)
-  add.tspan(<span class="string">'Nunc ultrices lectus at erat'</span>).newLine()
-  add.tspan(<span class="string">'dictum pharetra elementum ante'</span>).newLine()
-})</code></pre>
-<p>If you want to go the other way and don&#39;t want to add tspans at all, just one line of text, you can use the <code>plain()</code> method instead:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.plain(<span class="string">'Lorem ipsum dolor sit amet consectetur.'</span>)</code></pre>
-<p>This is a shortcut to the <code>plain</code> method on the <code>SVG.Text</code> instance which doesn&#39;t render newlines at all.</p>
-<p><em>Javascript inheritance stack: <code>SVG.Text</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<p><strong><code>returns</code>: <code>SVG.Text</code></strong></p>
-<h3 id='text/text' id="text-">text()</h3 id='text/text'>
-<p>Changing text afterwards is also possible with the <code>text()</code> method:</p>
-<pre><code class="lang-javascript">text.text(<span class="string">'Brilliant!'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<p>To get the raw text content:</p>
-<pre><code class="lang-javascript">text.text()</code></pre>
-<p><strong><code>returns</code>: <code>string</code></strong></p>
-<h3 id='text/tspan' id="tspan-">tspan()</h3 id='text/tspan'>
-<p>Just adding one tspan is also possible:</p>
-<pre><code class="lang-javascript">text.tspan(<span class="string">' on a train...'</span>).fill(<span class="string">'#f06'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Tspan</code></strong></p>
-<h3 id='text/plain' id="plain-">plain()</h3 id='text/plain'>
-<p>If the content of the element doesn&#39;t need any stying or multiple lines, it might be sufficient to just add some plain text:</p>
-<pre><code class="lang-javascript">text.plain(<span class="string">'I do not have any expectations.'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/font' id="font-">font()</h3 id='text/font'>
-<p>The sugar.js module provides some syntax sugar specifically for this element type:</p>
-<pre><code class="lang-javascript">text.font({
-  family:   <span class="string">'Helvetica'</span>
-, size:     <span class="number">144</span>
-, anchor:   <span class="string">'middle'</span>
-, leading:  <span class="string">'1.5em'</span>
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/leading' id="leading-">leading()</h3 id='text/leading'>
-<p>As opposed to html, where leading is defined by <code>line-height</code>, svg does not have a natural leading equivalent. In svg, lines are not defined naturally. They are defined by <code>&lt;tspan&gt;</code> nodes with a <code>dy</code> attribute defining the line height and a <code>x</code> value resetting the line to the <code>x</code> position of the parent text element. But you can also have many nodes in one line defining a different <code>y</code>, <code>dy</code>, <code>x</code> or even <code>dx</code> value. This gives us a lot of freedom, but also a lot more responsibility. We have to decide when a new line is defined, where it starts, what its offset is and what it&#39;s height is. The <code>leading()</code> method in SVG.js tries to ease the pain by giving you behaviour that is much closer to html. In combination with newline separated text, it works just like html:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="string">"Lorem ipsum dolor sit amet consectetur.\nCras sodales imperdiet auctor."</span>)
-text.leading(<span class="number">1.3</span>)</code></pre>
-<p>This will render a text element with a tspan element for each line, with a <code>dy</code> value of <code>130%</code> of the font size.</p>
-<p>Note that the <code>leading()</code> method assumes that every first level tspan in a text node represents a new line. Using <code>leading()</code> on text elements containing multiple tspans in one line (e.g. without a wrapping tspan defining a new line) will render scrambeled. So it is advisable to use this method with care, preferably only when throwing newline separated text at the text element or calling the <code>newLine()</code> method on every first level tspan added in the block passed as argument to the text element.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/build' id="build-">build()</h3 id='text/build'>
-<p>The <code>build()</code> can be used to enable / disable build mode. With build mode disabled, the <code>plain()</code> and <code>tspan()</code> methods will first call the <code>clear()</code> bethod before adding the new content. So when build mode is enabled, <code>plain()</code> and <code>tspan()</code> will append the new content to the existing content. When passing a block to the <code>text()</code> method, build mode is toggled automatically before and after the block is called. But in some cases it might be useful to be able to toggle it manually:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="string">'This is just the start, '</span>)
-
-text.build(<span class="literal">true</span>)  <span class="comment">// enables build mode</span>
-
-<span class="keyword">var</span> tspan = text.tspan(<span class="string">'something pink in the middle '</span>).fill(<span class="string">'#00ff97'</span>)
-text.plain(<span class="string">'and again boring at the end.'</span>)
-
-text.build(<span class="literal">false</span>) <span class="comment">// disables build mode</span>
-
-tspan.animate(<span class="string">'2s'</span>).fill(<span class="string">'#f06'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/rebuild' id="rebuild-">rebuild()</h3 id='text/rebuild'>
-<p>This is an internal callback that probably never needs to be called manually. Basically it rebuilds the text element whenerver <code>font-size</code> and <code>x</code> attributes or the <code>leading()</code> of the text element are modified. This method also acts a setter to enable or disable rebuilding:</p>
-<pre><code class="lang-javascript">text.rebuild(<span class="literal">false</span>) <span class="comment">//-&gt; disables rebuilding</span>
-text.rebuild(<span class="literal">true</span>)  <span class="comment">//-&gt; enables rebuilding and instantaneously rebuilds the text element</span></code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/clear' id="clear-">clear()</h3 id='text/clear'>
-<p>Clear all the contents of the called text element:</p>
-<pre><code class="lang-javascript">text.clear()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='text/length' id="length-">length()</h3 id='text/length'>
-<p>Gets the total computed text length of all tspans together:</p>
-<pre><code class="lang-javascript">text.length()</code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='text/lines' id="lines">lines</h3 id='text/lines'>
-<p>All added tspans are stored in the <code>lines</code> reference, which is an instance of <code>SVG.Set</code>.</p>
-<h3 id='text/events' id="events">events</h3 id='text/events'>
-<p>The text element has one event. It is fired every time the <code>rebuild()</code> method is called:</p>
-<pre><code class="lang-javascript">text.on(<span class="string">'rebuild'</span>, <span class="keyword">function</span>() {
-  <span class="comment">// whatever you need to do after rebuilding</span>
-})</code></pre>
-<h2 id='tspan' id="tspan">Tspan</h2 id='tspan'>
-<p>The tspan elements are only available inside text elements or inside other tspan elements. In SVG.js they have a class of their own:</p>
-<p><em>Javascript inheritance stack: <code>SVG.Tspan</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='tspan/text' id="text-">text()</h3 id='tspan/text'>
-<p>Update the content of the tspan. This can be done by either passing a string:</p>
-<pre><code class="lang-javascript">tspan.text(<span class="string">'Just a string.'</span>)</code></pre>
-<p>Which will basicly call the <code>plain()</code> method.</p>
-<p>Or by passing a block to add more specific content inside the called tspan:</p>
-<pre><code class="lang-javascript">tspan.text(<span class="keyword">function</span>(add) {
-  add.plain(<span class="string">'Just plain text.'</span>)
-  add.tspan(<span class="string">'Fancy text wrapped in a tspan.'</span>).fill(<span class="string">'#f06'</span>)
-  add.tspan(<span class="keyword">function</span>(addMore) {
-    addMore.tspan(<span class="string">'And you can doo deeper and deeper...'</span>)
-  })
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/tspan' id="tspan-">tspan()</h3 id='tspan/tspan'>
-<p>Add a nested tspan:</p>
-<pre><code class="lang-javascript">tspan.tspan(<span class="string">'I am a child of my parent'</span>).fill(<span class="string">'#f06'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Tspan</code></strong></p>
-<h3 id='tspan/plain' id="plain-">plain()</h3 id='tspan/plain'>
-<p>Just adds some plain text:</p>
-<pre><code class="lang-javascript">tspan.plain(<span class="string">'I do not have any expectations.'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/dx' id="dx-">dx()</h3 id='tspan/dx'>
-<p>Define the dynamic <code>x</code> value of the element, much like a html element with <code>position:relative</code> and <code>left</code> defined:</p>
-<pre><code class="lang-javascript">tspan.dx(<span class="number">30</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/dy' id="dy-">dy()</h3 id='tspan/dy'>
-<p>Define the dynamic <code>y</code> value of the element, much like a html element with <code>position:relative</code> and <code>top</code> defined:</p>
-<pre><code class="lang-javascript">tspan.dy(<span class="number">30</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/newline' id="newline-">newLine()</h3 id='tspan/newline'>
-<p>The <code>newLine()</code> is a convenience method for adding a new line with a <code>dy</code> attribute using the current &quot;leading&quot;:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="keyword">function</span>(add) {
-  add.tspan(<span class="string">'Lorem ipsum dolor sit amet '</span>).newLine()
-  add.tspan(<span class="string">'consectetur'</span>).fill(<span class="string">'#f06'</span>)
-  add.tspan(<span class="string">'.'</span>)
-  add.tspan(<span class="string">'Cras sodales imperdiet auctor.'</span>).newLine().dx(<span class="number">20</span>)
-  add.tspan(<span class="string">'Nunc ultrices lectus at erat'</span>).newLine()
-  add.tspan(<span class="string">'dictum pharetra elementum ante'</span>).newLine()
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/clear' id="clear-">clear()</h3 id='tspan/clear'>
-<p>Clear all the contents of the called tspan element:</p>
-<pre><code class="lang-javascript">tspan.clear()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='tspan/length' id="length-">length()</h3 id='tspan/length'>
-<p>Gets the total computed text length:</p>
-<pre><code class="lang-javascript">tspan.length()</code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h2 id='textpath' id="textpath">TextPath</h2 id='textpath'>
-<p>A nice feature in svg is the ability to run text along a path:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> text = draw.text(<span class="keyword">function</span>(add) {
-  add.tspan(<span class="string">'We go '</span>)
-  add.tspan(<span class="string">'up'</span>).fill(<span class="string">'#f09'</span>).dy(-<span class="number">40</span>)
-  add.tspan(<span class="string">', then we go down, then up again'</span>).dy(<span class="number">40</span>)
-})
-text
-  .path(<span class="string">'M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100'</span>)
-  .font({ size: <span class="number">42.5</span>, family: <span class="string">'Verdana'</span> })</code></pre>
-<p>When calling the <code>path()</code> method on a text element, the text element is mutated into an intermediate between a text and a path element. From that point on the text element will also feature a <code>plot()</code> method to update the path:</p>
-<pre><code class="lang-javascript">text.plot(<span class="string">'M 300 500 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100'</span>)</code></pre>
-<p>Attributes specific to the <code>&lt;textPath&gt;</code> element can be applied to the textPath instance itself:</p>
-<pre><code class="lang-javascript">text.textPath.attr(<span class="string">'startOffset'</span>, <span class="number">0.5</span>)</code></pre>
-<p>And they can be animated as well of course:</p>
-<pre><code class="lang-javascript">text.textPath.animate(<span class="number">3000</span>).attr(<span class="string">'startOffset'</span>, <span class="number">0.8</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.TextPath</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.TextPath</code> &lt; <code>SVG.Element</code></em></p>
-<h3 id='textpath/track' id="track">track</h3 id='textpath/track'>
-<p>Referencing the linked path element directly:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> path = text.track</code></pre>
-<h2 id='use' id="use">Use</h2 id='use'>
-<p>The use element simply emulates another existing element. Any changes on the master element will be reflected on all the <code>use</code> instances. The usage of <code>use()</code> is very straightforward:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>).fill(<span class="string">'#f09'</span>)
-<span class="keyword">var</span> use  = draw.use(rect).move(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p>In the case of the example above two rects will appear on the svg drawing, the original and the <code>use</code> instance. In some cases you might want to hide the original element. the best way to do this is to create the original element in the defs node:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.defs().rect(<span class="number">100</span>, <span class="number">100</span>).fill(<span class="string">'#f09'</span>)
-<span class="keyword">var</span> use  = draw.use(rect).move(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p>In this way the rect element acts as a library element. You can edit it but it won&#39;t be rendered.</p>
-<p><strong><code>returns</code>: <code>SVG.Use</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Use</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<h2 id='symbol' id="symbol">Symbol</h2 id='symbol'>
-<p>Not unlike the <code>group</code> element, the <code>symbol</code> element is a container element. The only difference between symbols and groups is that symbols are not rendered. Therefore a <code>symbol</code> element is ideal in combination with the <code>use</code> element:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> symbol = draw.symbol()
-symbol.rect(<span class="number">100</span>, <span class="number">100</span>).fill(<span class="string">'#f09'</span>)
-
-<span class="keyword">var</span> use  = draw.use(symbol).move(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Symbol</code></strong></p>
-<p><em>Javascript inheritance stack: <code>SVG.Use</code> &lt; <code>SVG.Container</code> &lt; <code>SVG.Symbol</code></em></p>
-<h2 id='referencing-elements' id="referencing-elements">Referencing elements</h2 id='referencing-elements'>
-<h3 id='referencing-elements/by-id' id="by-id">By id</h3 id='referencing-elements/by-id'>
-<p>If you want to get an element created by SVG.js by its id, you can use the <code>SVG.get()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> element = SVG.get(<span class="string">'my_element'</span>)
-
-element.fill(<span class="string">'#f06'</span>)</code></pre>
-<h3 id='referencing-elements/using-css-selectors' id="using-css-selectors">Using CSS selectors</h3 id='referencing-elements/using-css-selectors'>
-<p>There are two ways to select elements using CSS selectors.</p>
-<p>The first is to search globally. This will search in all svg elements in a document and return them in an instance of <code>SVG.Set</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> elements = SVG.select(<span class="string">'rect.my-class'</span>).fill(<span class="string">'#f06'</span>)</code></pre>
-<p>The second is to search within a parent element:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> elements = group.select(<span class="string">'rect.my-class'</span>).fill(<span class="string">'#f06'</span>)</code></pre>
-<h3 id='referencing-elements/using-jquery' id="using-jquery">Using jQuery</h3 id='referencing-elements/using-jquery'>
-<p>Another way is to use <a href="http://jquery.com/">jQuery</a> or <a href="http://zeptojs.com/">Zepto</a>. Here is an example:</p>
-<pre><code class="lang-javascript"><span class="comment">/* add elements */</span>
-<span class="keyword">var</span> draw   = SVG(<span class="string">'drawing'</span>)
-<span class="keyword">var</span> group  = draw.group().addClass(<span class="string">'my-group'</span>)
-<span class="keyword">var</span> rect   = group.rect(<span class="number">100</span>,<span class="number">100</span>).addClass(<span class="string">'my-element'</span>)
-<span class="keyword">var</span> circle = group.circle(<span class="number">100</span>).addClass(<span class="string">'my-element'</span>).move(<span class="number">100</span>, <span class="number">100</span>)
-
-<span class="comment">/* get elements in group */</span>
-<span class="keyword">var</span> elements = $(<span class="string">'#drawing g.my-group .my-element'</span>).each(<span class="keyword">function</span>() {
-  <span class="keyword">this</span>.instance.animate().fill(<span class="string">'#f09'</span>)
-})</code></pre>
-<h2 id='circular-reference' id="circular-reference">Circular reference</h2 id='circular-reference'>
-<p>Every element instance within SVG.js has a reference to the actual <code>node</code>:</p>
-<h3 id='circular-reference/node' id="node">node</h3 id='circular-reference/node'>
-<pre><code class="lang-javascript">element.node</code></pre>
-<p><strong><code>returns</code>: <code>node</code></strong></p>
-<h3 id='circular-reference/instance' id="instance">instance</h3 id='circular-reference/instance'>
-<p>Similarly, the node carries a reference to the SVG.js <code>instance</code>:</p>
-<pre><code class="lang-javascript">node.instance</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h2 id='parent-reference' id="parent-reference">Parent reference</h2 id='parent-reference'>
-<p>Every element has a reference to its parent with the <code>parent()</code> method:</p>
-<h3 id='parent-reference/parent' id="parent-">parent()</h3 id='parent-reference/parent'>
-<pre><code class="lang-javascript">element.parent()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<p>Even the main svg document:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>)
-
-draw.parent() <span class="comment">//-&gt; returns the wrappig html element with id 'drawing'</span></code></pre>
-<p><strong><code>returns</code>: <code>HTMLNode</code></strong></p>
-<h3 id='parent-reference/doc' id="doc-">doc()</h3 id='parent-reference/doc'>
-<p>For more specific parent filtering the <code>doc()</code> method can be used:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw = SVG(<span class="string">'drawing'</span>)
-<span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>)
-
-rect.doc() <span class="comment">//-&gt; returns draw</span></code></pre>
-<p>Alternatively a class can be passed as the first argument:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> draw   = SVG(<span class="string">'drawing'</span>)
-<span class="keyword">var</span> nested = draw.nested()
-<span class="keyword">var</span> group  = nested.group()
-<span class="keyword">var</span> rect   = group.rect(<span class="number">100</span>, <span class="number">100</span>)
-
-rect.doc()           <span class="comment">//-&gt; returns draw</span>
-rect.doc(SVG.Doc)    <span class="comment">//-&gt; returns draw</span>
-rect.doc(SVG.Nested) <span class="comment">//-&gt; returns nested</span>
-rect.doc(SVG.G)      <span class="comment">//-&gt; returns group</span></code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h2 id='child-references' id="child-references">Child references</h2 id='child-references'>
-<h3 id='child-references/first' id="first-">first()</h3 id='child-references/first'>
-<p>To get the first child of a parent element:</p>
-<pre><code class="lang-javascript">draw.first()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='child-references/last' id="last-">last()</h3 id='child-references/last'>
-<p>To get the last child of a parent element:</p>
-<pre><code class="lang-javascript">draw.last()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='child-references/children' id="children-">children()</h3 id='child-references/children'>
-<p>An array of all children will can be retreives with the <code>children</code> method:</p>
-<pre><code class="lang-javascript">draw.children()</code></pre>
-<p><strong><code>returns</code>: <code>array</code></strong></p>
-<h3 id='child-references/each' id="each-">each()</h3 id='child-references/each'>
-<p>The <code>each()</code> allows you to iterate over the all children of a parent element:</p>
-<pre><code class="lang-javascript">draw.each(<span class="keyword">function</span>(i, children) {
-  <span class="keyword">this</span>.fill({ color: <span class="string">'#f06'</span> })
-})</code></pre>
-<p>Deep traversing is also possible by passing true as the second argument:</p>
-<pre><code class="lang-javascript"><span class="comment">// draw.each(block, deep)</span>
-draw.each(<span class="keyword">function</span>(i, children) {
-  <span class="keyword">this</span>.fill({ color: <span class="string">'#f06'</span> })
-}, <span class="literal">true</span>)</code></pre>
-<p>Note that <code>this</code> refers to the current child element.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='child-references/has' id="has-">has()</h3 id='child-references/has'>
-<p>Checking the existence of an element within a parent:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect  = draw.rect(<span class="number">100</span>, <span class="number">50</span>)
-<span class="keyword">var</span> group = draw.group()
-
-draw.has(rect)  <span class="comment">//-&gt; returns true</span>
-group.has(rect) <span class="comment">//-&gt; returns false</span></code></pre>
-<p><strong><code>returns</code>: <code>boolean</code></strong></p>
-<h3 id='child-references/index' id="index-">index()</h3 id='child-references/index'>
-<p>Returns the index of given element and retuns -1 when it is not a child:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect  = draw.rect(<span class="number">100</span>, <span class="number">50</span>)
-<span class="keyword">var</span> group = draw.group()
-
-draw.index(rect)  <span class="comment">//-&gt; returns 0</span>
-group.index(rect) <span class="comment">//-&gt; returns -1</span></code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='child-references/get' id="get-">get()</h3 id='child-references/get'>
-<p>Get an element on a given position in the children array:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect   = draw.rect(<span class="number">20</span>, <span class="number">30</span>)
-<span class="keyword">var</span> circle = draw.circle(<span class="number">50</span>)
-
-draw.get(<span class="number">0</span>) <span class="comment">//-&gt; returns rect</span>
-draw.get(<span class="number">1</span>) <span class="comment">//-&gt; returns circle</span></code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='child-references/clear' id="clear-">clear()</h3 id='child-references/clear'>
-<p>To remove all elements from a parent element:</p>
-<pre><code class="lang-javascript">draw.clear()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='attribute-references' id="attribute-references">Attribute references</h2 id='attribute-references'>
-<h3 id='attribute-references/reference' id="reference-">reference()</h3 id='attribute-references/reference'>
-<p>In cases where an element is linked to another element through an attribute, the linked element instance can be fetched with the <code>reference()</code> method. The only thing required is the attribute name:</p>
-<pre><code class="lang-javascript">use.reference(<span class="string">'href'</span>) <span class="comment">//-&gt; returns used element instance</span>
-<span class="comment">// or</span>
-rect.reference(<span class="string">'fill'</span>) <span class="comment">//-&gt; returns gradient or pattern instance for example</span>
-<span class="comment">// or</span>
-circle.reference(<span class="string">'clip-path'</span>) <span class="comment">//-&gt; returns clip instance</span></code></pre>
-<h2 id='manipulating-elements' id="manipulating-elements">Manipulating elements</h2 id='manipulating-elements'>
-<h3 id='manipulating-elements/attr' id="attr-">attr()</h3 id='manipulating-elements/attr'>
-<p>You can get and set an element&#39;s attributes directly using <code>attr()</code>.</p>
-<p>Get a single attribute:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'x'</span>)</code></pre>
-<p>Set a single attribute:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'x'</span>, <span class="number">50</span>)</code></pre>
-<p>Set multiple attributes at once:</p>
-<pre><code class="lang-javascript">rect.attr({
-  fill: <span class="string">'#f06'</span>
-, <span class="string">'fill-opacity'</span>: <span class="number">0.5</span>
-, stroke: <span class="string">'#000'</span>
-, <span class="string">'stroke-width'</span>: <span class="number">10</span>
-})</code></pre>
-<p>Set an attribute with a namespace:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'x'</span>, <span class="number">50</span>, <span class="string">'http://www.w3.org/2000/svg'</span>)</code></pre>
-<p>Explicitly remove an attribute:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'fill'</span>, <span class="literal">null</span>)</code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/transform' id="transform-">transform()</h3 id='manipulating-elements/transform'>
-<p>The <code>transform()</code> can act both as a getter or a setter. Let&#39;s start with the former but first a word about transforms.</p>
-<p>Transforms are cascading sequentially. Every transform you add will build further on the effects of all the previous transforms together. So for example, when you add the <code>translate(10, 10)</code> transform three times, the total translation will equal <code>translate(30, 30)</code>.</p>
-<p>We are going to use one node as an example for this section:</p>
-<pre><code class="lang-xml"><span class="tag">&lt;<span class="title">rect</span> <span class="attribute">width</span>=<span class="value">"100"</span> <span class="attribute">height</span>=<span class="value">"100"</span> <span class="attribute">transform</span>=<span class="value">"translate(10, 10) rotate(45, 100, 100) scale(0.5, 0.5) rotate(-10)"</span> /&gt;</span></code></pre>
-<h4 id="get-by-index">get by index</h4>
-<p>A transform at a specific index:</p>
-<pre><code class="lang-javascript">rect.transform(<span class="number">1</span>)
-<span class="comment">// -&gt; returns { type: 'scale', x: 0.5, cy: 0.5 }</span></code></pre>
-<h4 id="get-by-name">get by name</h4>
-<p>By default the first occurence of a given transform type will be returned:</p>
-<pre><code class="lang-javascript">rect.transform(<span class="string">'rotate'</span>)
-<span class="comment">// -&gt; returns { type: 'rotate', rotation: 45, cx: 100, cy: 100 }</span></code></pre>
-<p>If multiple occurences of a transform type exist they can be fetched with a number:</p>
-<pre><code class="lang-javascript">rect.transform(<span class="string">'rotate'</span>, { at: <span class="number">1</span> })
-<span class="comment">// -&gt; returns { type: 'rotate', rotation: -10 }</span></code></pre>
-<p>With the <code>transform()</code> method elements can be scaled, rotated, translated and skewed:</p>
-<pre><code class="lang-javascript">rect.transform({
-  rotation: <span class="number">45</span>
-, cx:       <span class="number">100</span>
-, cy:       <span class="number">100</span>
-})</code></pre>
-<p>You can also provide two arguments as property and value:</p>
-<pre><code class="lang-javascript">rect.transform(<span class="string">'matrix'</span>, <span class="string">'1,0.5,0.5,1,0,0'</span>)</code></pre>
-<p>Note that you can also apply transformations directly using the <code>attr()</code> method:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'transform'</span>, <span class="string">'matrix(1,0.5,0.5,1,0,0)'</span>)</code></pre>
-<p>Although that would mean you can&#39;t use the <code>transform()</code> method because it would overwrite any manually applied transformations. You should only go down this route if you know exactly what you are doing and you want to achieve an effect that is not achievable with the <code>transform()</code> method.</p>
-<p><code>getter</code><strong><code>returns</code>: <code>number</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/style' id="style-">style()</h3 id='manipulating-elements/style'>
-<p>With the <code>style()</code> method the <code>style</code> attribute can be managed like attributes with <code>attr</code>:</p>
-<pre><code class="lang-javascript">rect.style(<span class="string">'cursor'</span>, <span class="string">'pointer'</span>)</code></pre>
-<p>Multiple styles can be set at once using an object:</p>
-<pre><code class="lang-javascript">rect.style({ cursor: <span class="string">'pointer'</span>, fill: <span class="string">'#f03'</span> })</code></pre>
-<p>Or a css string:</p>
-<pre><code class="lang-javascript">rect.style(<span class="string">'cursor:pointer;fill:#f03;'</span>)</code></pre>
-<p>Similarly to <code>attr()</code> the <code>style()</code> method can also act as a getter:</p>
-<pre><code class="lang-javascript">rect.style(<span class="string">'cursor'</span>)
-<span class="comment">// =&gt; pointer</span></code></pre>
-<p>Or even a full getter:</p>
-<pre><code class="lang-javascript">rect.style()
-<span class="comment">// =&gt; 'cursor:pointer;fill:#f03;'</span></code></pre>
-<p>Explicitly deleting individual style definitions works the same as with the <code>attr()</code> method:</p>
-<pre><code class="lang-javascript">rect.style(<span class="string">'cursor'</span>, <span class="literal">null</span>)</code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/classes' id="classes-">classes()</h3 id='manipulating-elements/classes'>
-<p>Fetches an array of css classes on the node:</p>
-<pre><code class="lang-javascript">rect.classes()</code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>array</code></strong></p>
-<h3 id='manipulating-elements/hasclass' id="hasclass-">hasClass()</h3 id='manipulating-elements/hasclass'>
-<p>Test the presence of a given css class:</p>
-<pre><code class="lang-javascript">rect.hasClass(<span class="string">'purple-rain'</span>)</code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>boolean</code></strong></p>
-<h3 id='manipulating-elements/addclass' id="addclass-">addClass()</h3 id='manipulating-elements/addclass'>
-<p>Adds a given css class:</p>
-<pre><code class="lang-javascript">rect.addClass(<span class="string">'pink-flower'</span>)</code></pre>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/removeclass' id="removeclass-">removeClass()</h3 id='manipulating-elements/removeclass'>
-<p>Removes a given css class:</p>
-<pre><code class="lang-javascript">rect.removeClass(<span class="string">'pink-flower'</span>)</code></pre>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/toggleclass' id="toggleclass-">toggleClass()</h3 id='manipulating-elements/toggleclass'>
-<p>Toggles a given css class:</p>
-<pre><code class="lang-javascript">rect.toggleClass(<span class="string">'pink-flower'</span>)</code></pre>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/move' id="move-">move()</h3 id='manipulating-elements/move'>
-<p>Move the element to a given <code>x</code> and <code>y</code> position by its upper left corner:</p>
-<pre><code class="lang-javascript">rect.move(<span class="number">200</span>, <span class="number">350</span>)</code></pre>
-<p>Note that you can also use the following code to move some elements (like images and rects) around:</p>
-<pre><code class="lang-javascript">rect.attr({ x: <span class="number">20</span>, y: <span class="number">60</span> })</code></pre>
-<p>Although <code>move()</code> is much more convenient because it will always use the upper left corner as the position reference, whereas with using <code>attr()</code> the <code>x</code> and <code>y</code> reference differ between element types. For example, rect uses the upper left corner with the <code>x</code> and <code>y</code> attributes, circle and ellipse use their center with the <code>cx</code> and <code>cy</code> attributes and thereby simply ignoring the <code>x</code> and <code>y</code> values you might assign.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/x' id="x-">x()</h3 id='manipulating-elements/x'>
-<p>Move element only along x-axis by its upper left corner:</p>
-<pre><code class="lang-javascript">rect.x(<span class="number">200</span>)</code></pre>
-<p>Without an argument the <code>x()</code> method serves as a getter as well:</p>
-<pre><code class="lang-javascript">rect.x() <span class="comment">//-&gt; returns 200</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/y' id="y-">y()</h3 id='manipulating-elements/y'>
-<p>Move element only along y-axis by its upper left corner:</p>
-<pre><code class="lang-javascript">rect.y(<span class="number">350</span>)</code></pre>
-<p>Without an argument the <code>y()</code> method serves as a getter as well:</p>
-<pre><code class="lang-javascript">rect.y() <span class="comment">//-&gt; returns 350</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/dmove' id="dmove-">dmove()</h3 id='manipulating-elements/dmove'>
-<p>Move the element to a given <code>x</code> and <code>y</code> position relative to its current position:</p>
-<pre><code class="lang-javascript">rect.dmove(<span class="number">10</span>, <span class="number">30</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/dx' id="dx-">dx()</h3 id='manipulating-elements/dx'>
-<p>Move element only along x-axis relative to its current position:</p>
-<pre><code class="lang-javascript">rect.dx(<span class="number">200</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/dy' id="dy-">dy()</h3 id='manipulating-elements/dy'>
-<p>Move element only along y-axis relative to its current position:</p>
-<pre><code class="lang-javascript">rect.dy(<span class="number">200</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/center' id="center-">center()</h3 id='manipulating-elements/center'>
-<p>This is an extra method to move an element by its center:</p>
-<pre><code class="lang-javascript">rect.center(<span class="number">150</span>, <span class="number">150</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/cx' id="cx-">cx()</h3 id='manipulating-elements/cx'>
-<p>Move element only along x-axis by its center:</p>
-<pre><code class="lang-javascript">rect.cx(<span class="number">200</span>)</code></pre>
-<p>Without an argument the <code>cx()</code> method serves as a getter as well:</p>
-<pre><code class="lang-javascript">rect.cx() <span class="comment">//-&gt; returns 200</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/cy' id="cy-">cy()</h3 id='manipulating-elements/cy'>
-<p>Move element only along y-axis by its center:</p>
-<pre><code class="lang-javascript">rect.cy(<span class="number">350</span>)</code></pre>
-<p>Without an argument the <code>cy()</code> method serves as a getter as well:</p>
-<pre><code class="lang-javascript">rect.cy() <span class="comment">//-&gt; returns 350</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/size' id="size-">size()</h3 id='manipulating-elements/size'>
-<p>Set the size of an element by a given <code>width</code> and <code>height</code>:</p>
-<pre><code class="lang-javascript">rect.size(<span class="number">200</span>, <span class="number">300</span>)</code></pre>
-<p>Proporional resizing is also possible by leaving out <code>height</code>:</p>
-<pre><code class="lang-javascript">rect.size(<span class="number">200</span>)</code></pre>
-<p>Or by passing <code>null</code> as the value for <code>width</code>:</p>
-<pre><code class="lang-javascript">rect.size(<span class="literal">null</span>, <span class="number">200</span>)</code></pre>
-<p>Same as with <code>move()</code> the size of an element could be set by using <code>attr()</code>. But because every type of element is handles its size differently the <code>size()</code> method is much more convenient.</p>
-<p>There is one exceptions though, the <code>SVG.Text</code> only takes one argument and applies the given value to the <code>font-size</code> attribute.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/width' id="width-">width()</h3 id='manipulating-elements/width'>
-<p>Set only width of an element:</p>
-<pre><code class="lang-javascript">rect.width(<span class="number">200</span>)</code></pre>
-<p>This method also acts as a getter:</p>
-<pre><code class="lang-javascript">rect.width() <span class="comment">//-&gt; returns 200</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/height' id="height-">height()</h3 id='manipulating-elements/height'>
-<p>Set only height of an element:</p>
-<pre><code class="lang-javascript">rect.height(<span class="number">325</span>)</code></pre>
-<p>This method also acts as a getter:</p>
-<pre><code class="lang-javascript">rect.height() <span class="comment">//-&gt; returns 325</span></code></pre>
-<p><code>getter</code><strong><code>returns</code>: <code>value</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/hide' id="hide-">hide()</h3 id='manipulating-elements/hide'>
-<p>Hide element:</p>
-<pre><code class="lang-javascript">rect.hide()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/show' id="show-">show()</h3 id='manipulating-elements/show'>
-<p>Show element:</p>
-<pre><code class="lang-javascript">rect.show()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/visible' id="visible-">visible()</h3 id='manipulating-elements/visible'>
-<p>To check if the element is visible:</p>
-<pre><code class="lang-javascript">rect.visible()</code></pre>
-<p><strong><code>returns</code>: <code>boolean</code></strong></p>
-<h3 id='manipulating-elements/clone' id="clone-">clone()</h3 id='manipulating-elements/clone'>
-<p>To make an exact copy of an element the <code>clone()</code> method comes in handy:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> clone = rect.clone()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<p>This will create an new, unlinked copy. If you want to make a linked clone have a look at the <a href="#elements/use">use</a> element.</p>
-<h3 id='manipulating-elements/remove' id="remove-">remove()</h3 id='manipulating-elements/remove'>
-<p>Pretty straightforward:</p>
-<pre><code class="lang-javascript">rect.remove()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='manipulating-elements/replace' id="replace-">replace()</h3 id='manipulating-elements/replace'>
-<p>This method will replace the called element with the given element in the same position in the stack:</p>
-<pre><code class="lang-javascript">rect.replace(draw.circle(<span class="number">100</span>))</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h2 id='inserting-elements' id="inserting-elements">Inserting elements</h2 id='inserting-elements'>
-<h3 id='inserting-elements/add' id="add-">add()</h3 id='inserting-elements/add'>
-<p>Elements can be moved between parents via the <code>add()</code> method on any parent:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>)
-<span class="keyword">var</span> group = draw.group()
-
-group.add(rect) <span class="comment">//-&gt; returns group</span></code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='inserting-elements/put' id="put-">put()</h3 id='inserting-elements/put'>
-<p>Where the <code>add()</code> method returns the parent itself, the <code>put()</code> method returns the given element:</p>
-<pre><code class="lang-javascript">group.put(rect) <span class="comment">//-&gt; returns rect</span></code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='inserting-elements/addto' id="addto-">addTo()</h3 id='inserting-elements/addto'>
-<p>Similarly to the <code>add()</code> method on a parent element, elements have the <code>addTo()</code> method:</p>
-<pre><code class="lang-javascript">rect.addTo(group) <span class="comment">//-&gt; returns rect</span></code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='inserting-elements/putin' id="putin-">putIn()</h3 id='inserting-elements/putin'>
-<p>Similarly to the <code>put()</code> method on a parent element, elements have the <code>putIn()</code> method:</p>
-<pre><code class="lang-javascript">rect.putIn(group) <span class="comment">//-&gt; returns group</span></code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h2 id='geometry' id="geometry">Geometry</h2 id='geometry'>
-<h3 id='geometry/viewbox' id="viewbox-">viewbox()</h3 id='geometry/viewbox'>
-<p>The <code>viewBox</code> attribute of an <code>&lt;svg&gt;</code> element can be managed with the <code>viewbox()</code> method. When supplied with four arguments it will act as a setter:</p>
-<pre><code class="lang-javascript">draw.viewbox(<span class="number">0</span>, <span class="number">0</span>, <span class="number">297</span>, <span class="number">210</span>)</code></pre>
-<p>Alternatively you can also supply an object as the first argument:</p>
-<pre><code class="lang-javascript">draw.viewbox({ x: <span class="number">0</span>, y: <span class="number">0</span>, width: <span class="number">297</span>, height: <span class="number">210</span> })</code></pre>
-<p>Without any arguments an instance of <code>SVG.ViewBox</code> will be returned:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> box = draw.viewbox()</code></pre>
-<p>But the best thing about the <code>viewbox()</code> method is that you can get the zoom of the viewbox:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> box = draw.viewbox()
-<span class="keyword">var</span> zoom = box.zoom</code></pre>
-<p>If the size of the viewbox equals the size of the svg drawing, the zoom value will be 1.</p>
-<p><code>getter</code><strong><code>returns</code>: <code>SVG.ViewBox</code></strong></p>
-<p><code>setter</code><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='geometry/bbox' id="bbox-">bbox()</h3 id='geometry/bbox'>
-<pre><code class="lang-javascript">path.bbox()</code></pre>
-<p>This will return an instance of <code>SVG.BBox</code> containing the following values:</p>
-<pre><code class="lang-javascript">{ width: <span class="number">20</span>, height: <span class="number">20</span>, x: <span class="number">10</span>, y: <span class="number">20</span>, cx: <span class="number">20</span>, cy: <span class="number">30</span>, x2: <span class="number">30</span>, y2: <span class="number">40</span> }</code></pre>
-<p>As opposed to the native <code>getBBox()</code> method any translations used with the <code>transform()</code> method will be taken into account.</p>
-<p>The <code>SVG.BBox</code> has one other nifty little feature, enter the <code>merge()</code> method. With <code>merge()</code> two <code>SVG.BBox</code> instances can be merged into one new instance, basically being the bounding box of the two original bounding boxes:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> box1 = draw.rect(<span class="number">100</span>,<span class="number">100</span>).move(<span class="number">50</span>,<span class="number">50</span>)
-<span class="keyword">var</span> box2 = draw.rect(<span class="number">100</span>,<span class="number">100</span>).move(<span class="number">200</span>,<span class="number">200</span>)
-<span class="keyword">var</span> box3 = box1.merge(box2)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.BBox</code></strong></p>
-<h3 id='geometry/rbox' id="rbox-">rbox()</h3 id='geometry/rbox'>
-<p>Is similar to <code>bbox()</code> but will give you the box around the exact representation of the element, taking all transformations into account.</p>
-<pre><code class="lang-javascript">path.rbox()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.RBox</code></strong></p>
-<h3 id='geometry/ctm' id="ctm-">ctm()</h3 id='geometry/ctm'>
-<p>Retreives the current transform matrix of the element:</p>
-<pre><code class="lang-javascript">path.ctm()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Matrix</code></strong></p>
-<h3 id='geometry/inside' id="inside-">inside()</h3 id='geometry/inside'>
-<p>To check if a given point is inside the bounding box of an element you can use the <code>inside()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>, <span class="number">100</span>).move(<span class="number">50</span>, <span class="number">50</span>)
-
-rect.inside(<span class="number">25</span>, <span class="number">30</span>) <span class="comment">//-&gt; returns false</span>
-rect.inside(<span class="number">60</span>, <span class="number">70</span>) <span class="comment">//-&gt; returns true</span></code></pre>
-<p>Note: the <code>x</code> and <code>y</code> positions are tested against the relative position of the element. Any offset on the parent element is not taken into account.</p>
-<p><strong><code>returns</code>: <code>boolean</code></strong></p>
-<h3 id='geometry/length' id="length-">length()</h3 id='geometry/length'>
-<p>Get the total length of a path element:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> length = path.length()</code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='geometry/pointat' id="pointat-">pointAt()</h3 id='geometry/pointat'>
-<p>Get get point on a path at given length:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> point = path.pointAt(<span class="number">105</span>) <span class="comment">//-&gt; returns { x : 96.88497924804688, y : 58.062747955322266 }</span></code></pre>
-<p><strong><code>returns</code>: <code>object</code></strong></p>
-<h2 id='animating-elements' id="animating-elements">Animating elements</h2 id='animating-elements'>
-<h3 id='animating-elements/animatable-method-chain' id="animatable-method-chain">Animatable method chain</h3 id='animating-elements/animatable-method-chain'>
-<p>Note that the <code>animate()</code> method will not return the targeted element but an instance of SVG.FX which will take the following methods:</p>
-<p>Of course <code>attr()</code>:</p>
-<pre><code class="lang-javascript">rect.animate().attr({ fill: <span class="string">'#f03'</span> })</code></pre>
-<p>The <code>x()</code>, <code>y()</code> and <code>move()</code> methods:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">100</span>, <span class="number">100</span>)</code></pre>
-<p>And the <code>cx()</code>, <code>cy()</code> and <code>center()</code> methods:</p>
-<pre><code class="lang-javascript">rect.animate().center(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p>If you include the sugar.js module, <code>fill()</code>, <code>stroke()</code>, <code>rotate()</code>, <code>skew()</code>, <code>scale()</code>, <code>matrix()</code>, <code>opacity()</code>, <code>radius()</code> will be available as well:</p>
-<pre><code class="lang-javascript">rect.animate().rotate(<span class="number">45</span>).skew(<span class="number">25</span>, <span class="number">0</span>)</code></pre>
-<p>You can also animate non-numeric unit values unsing the <code>attr()</code> method:</p>
-<pre><code class="lang-javascript">rect.attr(<span class="string">'x'</span>, <span class="string">'10%'</span>).animate().attr(<span class="string">'x'</span>, <span class="string">'50%'</span>)</code></pre>
-<h3 id='animating-elements/easing' id="easing">easing</h3 id='animating-elements/easing'>
-<p>All available ease types are:</p>
-<ul>
-<li><code>&lt;&gt;</code>: ease in and out</li>
-<li><code>&gt;</code>: ease out</li>
-<li><code>&lt;</code>: ease in</li>
-<li><code>-</code>: linear</li>
-<li><code>=</code>: external control</li>
-<li>a function</li>
-</ul>
-<p>For the latter, here is an example of the default <code>&lt;&gt;</code> function:</p>
-<pre><code class="lang-javascript"><span class="keyword">function</span>(pos) { <span class="keyword">return</span> (-Math.cos(pos * Math.PI) / <span class="number">2</span>) + <span class="number">0.5</span> }</code></pre>
-<p>For more easing equations, have a look at the <a href="https://github.com/wout/svg.easing.js">svg.easing.js</a> plugin.</p>
-<h3 id='animating-elements/animate' id="animate-">animate()</h3 id='animating-elements/animate'>
-<p>Animating elements is very much the same as manipulating elements, the only difference is you have to include the <code>animate()</code> method:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">150</span>, <span class="number">150</span>)</code></pre>
-<p>The <code>animate()</code> method will take three arguments. The first is <code>duration</code>, the second <code>ease</code> and the third <code>delay</code>:</p>
-<pre><code class="lang-javascript">rect.animate(<span class="number">2000</span>, <span class="string">'&gt;'</span>, <span class="number">1000</span>).attr({ fill: <span class="string">'#f03'</span> })</code></pre>
-<p>Alternatively you can pass an object as the first argument:</p>
-<pre><code class="lang-javascript">rect.animate({ ease: <span class="string">'&lt;'</span>, delay: <span class="string">'1.5s'</span> }).attr({ fill: <span class="string">'#f03'</span> })</code></pre>
-<p>By default <code>duration</code> will be set to <code>1000</code>, <code>ease</code> will be set to <code>&lt;&gt;</code>.</p>
-<p><strong><code>returns</code>: <code>SVG.FX</code></strong></p>
-<h3 id='animating-elements/pause' id="pause-">pause()</h3 id='animating-elements/pause'>
-<p>Pausing an animations is fairly straightforward:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">200</span>, <span class="number">200</span>)
-
-rect.mouseenter(<span class="keyword">function</span>() { <span class="keyword">this</span>.pause() })</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='animating-elements/play' id="play-">play()</h3 id='animating-elements/play'>
-<p>Will start playing a paused animation:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">200</span>, <span class="number">200</span>)
-
-rect.mouseenter(<span class="keyword">function</span>() { <span class="keyword">this</span>.pause() })
-rect.mouseleave(<span class="keyword">function</span>() { <span class="keyword">this</span>.play() })</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='animating-elements/stop' id="stop-">stop()</h3 id='animating-elements/stop'>
-<p>Animations can be stopped in two ways.</p>
-<p>By calling the <code>stop()</code> method:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">200</span>, <span class="number">200</span>)
-
-rect.stop()</code></pre>
-<p>Or by invoking another animation:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">200</span>, <span class="number">200</span>)
-
-rect.animate().center(<span class="number">200</span>, <span class="number">200</span>)</code></pre>
-<p>By calling <code>stop()</code>, the transition is left at its current position. By passing <code>true</code> as the first argument to <code>stop()</code>, the animation will be fulfilled instantly:</p>
-<pre><code class="lang-javascript">rect.animate().move(<span class="number">200</span>, <span class="number">200</span>)
-
-rect.stop(<span class="literal">true</span>)</code></pre>
-<p>Stopping an animation is irreversable.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='animating-elements/during' id="during-">during()</h3 id='animating-elements/during'>
-<p>If you want to perform your own actions during the animations you can use the <code>during()</code> method:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> position
-  , from = <span class="number">100</span>
-  , to   = <span class="number">300</span>
-
-rect.animate(<span class="number">3000</span>).move(<span class="number">100</span>, <span class="number">100</span>).during(<span class="keyword">function</span>(pos) {
-  position = from + (to - from) * pos 
-})</code></pre>
-<p>Note that <code>pos</code> is <code>0</code> in the beginning of the animation and <code>1</code> at the end of the animation.</p>
-<p>To make things easier a morphing function is passed as the second argument. This function accepts a <code>from</code> and <code>to</code> value as the first and second argument and they can be a number, unit or hex color:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">100</span>, <span class="number">100</span>).attr(<span class="string">'cx'</span>, <span class="string">'20%'</span>).fill(<span class="string">'#333'</span>)
-
-rect.animate(<span class="number">3000</span>).move(<span class="number">100</span>, <span class="number">100</span>).during(<span class="keyword">function</span>(pos, morph) {
-  <span class="comment">/* numeric values */</span>
-  ellipse.size(morph(<span class="number">100</span>, <span class="number">200</span>), morph(<span class="number">100</span>, <span class="number">50</span>))
-
-  <span class="comment">/* unit strings */</span>
-  ellipse.attr(<span class="string">'cx'</span>, morph(<span class="string">'20%'</span>, <span class="string">'80%'</span>))
-
-  <span class="comment">/* hex color strings */</span>
-  ellipse.fill(morph(<span class="string">'#333'</span>, <span class="string">'#ff0066'</span>))
-})</code></pre>
-<p><strong><code>returns</code>: <code>SVG.FX</code></strong></p>
-<h3 id='animating-elements/loop' id="loop-">loop()</h3 id='animating-elements/loop'>
-<p>By default the <code>loop()</code> method creates and eternal loop:</p>
-<pre><code class="lang-javascript">rect.animate(<span class="number">3000</span>).move(<span class="number">100</span>, <span class="number">100</span>).loop()</code></pre>
-<p>But the loop can also be a predefined number of times:</p>
-<pre><code class="lang-javascript">rect.animate(<span class="number">3000</span>).move(<span class="number">100</span>, <span class="number">100</span>).loop(<span class="number">5</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.FX</code></strong></p>
-<h3 id='animating-elements/after' id="after-">after()</h3 id='animating-elements/after'>
-<p>Finally, you can add callback methods using <code>after()</code>:</p>
-<pre><code class="lang-javascript">rect.animate(<span class="number">3000</span>).move(<span class="number">100</span>, <span class="number">100</span>).after(<span class="keyword">function</span>() {
-  <span class="keyword">this</span>.animate().attr({ fill: <span class="string">'#f06'</span> })
-})</code></pre>
-<p>Note that the <code>after()</code> method will never be called if the animation is looping eternally. </p>
-<p><strong><code>returns</code>: <code>SVG.FX</code></strong></p>
-<h3 id='animating-elements/to' id="to-">to()</h3 id='animating-elements/to'>
-<p>Say you want to control the position of an animation with an external event, then the <code>to()</code> method will proove very useful:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> animate = draw.rect(<span class="number">100</span>, <span class="number">100</span>).move(<span class="number">50</span>, <span class="number">50</span>).animate(<span class="string">'='</span>).move(<span class="number">200</span>, <span class="number">200</span>)
-
-document.onmousemove = <span class="keyword">function</span>(event) {
-  animate.to(event.clientX / <span class="number">1000</span>)
-}</code></pre>
-<p>In order to be able use the <code>to()</code> method the duration of the animation should be set to <code>&#39;=&#39;</code>. The value passed as the first argument of <code>to()</code> should be a number between <code>0</code> and <code>1</code>, <code>0</code> being the beginning of the animation and <code>1</code> being the end. Note that any values below <code>0</code> and above <code>1</code> will be normalized.</p>
-<p><em>This functionality requires the fx.js module which is included in the default distribution.</em></p>
-<p><strong><code>returns</code>: <code>SVG.FX</code></strong></p>
-<h2 id='syntax-sugar' id="syntax-sugar">Syntax sugar</h2 id='syntax-sugar'>
-<p>Fill and stroke are used quite often. Therefore two convenience methods are provided:</p>
-<h3 id='syntax-sugar/fill' id="fill-">fill()</h3 id='syntax-sugar/fill'>
-<p>The <code>fill()</code> method is a pretty alternative to the <code>attr()</code> method:</p>
-<pre><code class="lang-javascript">rect.fill({ color: <span class="string">'#f06'</span>, opacity: <span class="number">0.6</span> })</code></pre>
-<p>A single hex string will work as well:</p>
-<pre><code class="lang-javascript">rect.fill(<span class="string">'#f06'</span>)</code></pre>
-<p>Last but not least, you can also use an image as fill, simply by passing an image url:</p>
-<pre><code class="lang-javascript">rect.fill(<span class="string">'images/shade.jpg'</span>)</code></pre>
-<p>Or if you want more control over the size of the image, you can pass an image instance as well:</p>
-<pre><code class="lang-javascript">rect.fill(draw.image(<span class="string">'images/shade.jpg'</span>, <span class="number">20</span>, <span class="number">20</span>))</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/stroke' id="stroke-">stroke()</h3 id='syntax-sugar/stroke'>
-<p>The <code>stroke()</code> method is similar to <code>fill()</code>:</p>
-<pre><code class="lang-javascript">rect.stroke({ color: <span class="string">'#f06'</span>, opacity: <span class="number">0.6</span>, width: <span class="number">5</span> })</code></pre>
-<p>Like fill, a single hex string will work as well:</p>
-<pre><code class="lang-javascript">rect.stroke(<span class="string">'#f06'</span>)</code></pre>
-<p>Not unlike the <code>fill()</code> method, you can also use an image as stroke, simply by passing an image url:</p>
-<pre><code class="lang-javascript">rect.stroke(<span class="string">'images/shade.jpg'</span>)</code></pre>
-<p>Or if you want more control over the size of the image, you can pass an image instance as well:</p>
-<pre><code class="lang-javascript">rect.stroke(draw.image(<span class="string">'images/shade.jpg'</span>, <span class="number">20</span>, <span class="number">20</span>))</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/opacity' id="opacity-">opacity()</h3 id='syntax-sugar/opacity'>
-<p>To set the overall opacity of an element:</p>
-<pre><code class="lang-javascript">rect.opacity(<span class="number">0.5</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/rotate' id="rotate-">rotate()</h3 id='syntax-sugar/rotate'>
-<p>The <code>rotate()</code> method will automatically rotate elements according to the center of the element:</p>
-<pre><code class="lang-javascript"><span class="comment">// rotate(degrees)</span>
-rect.rotate(<span class="number">45</span>)</code></pre>
-<p>Although you can also define a specific rotation point:</p>
-<pre><code class="lang-javascript"><span class="comment">// rotate(degrees, cx, cy)</span>
-rect.rotate(<span class="number">45</span>, <span class="number">50</span>, <span class="number">50</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/skew' id="skew-">skew()</h3 id='syntax-sugar/skew'>
-<p>The <code>skew()</code> method will take an <code>x</code> and <code>y</code> value:</p>
-<pre><code class="lang-javascript"><span class="comment">// skew(x, y)</span>
-rect.skew(<span class="number">0</span>, <span class="number">45</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/scale' id="scale-">scale()</h3 id='syntax-sugar/scale'>
-<p>The <code>scale()</code> method will take an <code>x</code> and <code>y</code> value:</p>
-<pre><code class="lang-javascript"><span class="comment">// scale(x, y)</span>
-rect.scale(<span class="number">0.5</span>, -<span class="number">1</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='syntax-sugar/translate' id="translate-">translate()</h3 id='syntax-sugar/translate'>
-<p>The <code>translate()</code> method will take an <code>x</code> and <code>y</code> value:</p>
-<pre><code class="lang-javascript"><span class="comment">// translate(x, y)</span>
-rect.translate(<span class="number">0.5</span>, -<span class="number">1</span>)</code></pre>
-<h3 id='syntax-sugar/radius' id="radius-">radius()</h3 id='syntax-sugar/radius'>
-<p>Rects and ellipses have a <code>radius()</code> method. On rects it defines rounded corners, on ellipses the radii:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">10</span>)</code></pre>
-<p>This will set the <code>rx</code> and <code>ry</code> attributes to <code>10</code>. To set <code>rx</code> and <code>ry</code> individually:</p>
-<pre><code class="lang-javascript">rect.radius(<span class="number">10</span>, <span class="number">20</span>)</code></pre>
-<p><em>This functionality requires the sugar.js module which is included in the default distribution.</em></p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='masking-elements' id="masking-elements">Masking elements</h2 id='masking-elements'>
-<h3 id='masking-elements/maskwith' id="maskwith-">maskWith()</h3 id='masking-elements/maskwith'>
-<p>The easiest way to mask is to use a single element:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">80</span>, <span class="number">40</span>).move(<span class="number">10</span>, <span class="number">10</span>).fill({ color: <span class="string">'#fff'</span> })
-
-rect.maskWith(ellipse)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='masking-elements/mask' id="mask-">mask()</h3 id='masking-elements/mask'>
-<p>But you can also use multiple elements:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">80</span>, <span class="number">40</span>).move(<span class="number">10</span>, <span class="number">10</span>).fill({ color: <span class="string">'#fff'</span> })
-<span class="keyword">var</span> text = draw.text(<span class="string">'SVG.JS'</span>).move(<span class="number">10</span>, <span class="number">10</span>).font({ size: <span class="number">36</span> }).fill({ color: <span class="string">'#fff'</span> })
-
-<span class="keyword">var</span> mask = draw.mask().add(text).add(ellipse)
-
-rect.maskWith(mask)</code></pre>
-<p>If you want the masked object to be rendered at 100% you need to set the fill color of the masking object to white. But you might also want to use a gradient:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> gradient = draw.gradient(<span class="string">'linear'</span>, <span class="keyword">function</span>(stop) {
-  stop.at({ offset: <span class="number">0</span>, color: <span class="string">'#000'</span> })
-  stop.at({ offset: <span class="number">1</span>, color: <span class="string">'#fff'</span> })
-})
-
-<span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">80</span>, <span class="number">40</span>).move(<span class="number">10</span>, <span class="number">10</span>).fill({ color: gradient })
-
-rect.maskWith(ellipse)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Mask</code></strong></p>
-<h3 id='masking-elements/unmask' id="unmask-">unmask()</h3 id='masking-elements/unmask'>
-<p>Unmasking the elements can be done with the <code>unmask()</code> method:</p>
-<pre><code class="lang-javascript">rect.unmask()</code></pre>
-<p>The <code>unmask()</code> method returns the masking element.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='masking-elements/remove' id="remove-">remove()</h3 id='masking-elements/remove'>
-<p>Removing the mask alltogether will also <code>unmask()</code> all masked elements as well:</p>
-<pre><code class="lang-javascript">mask.remove()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='masking-elements/masker' id="masker">masker</h3 id='masking-elements/masker'>
-<p>For your convenience, the masking element is also referenced in the masked element. This can be useful in case you want to change the mask:</p>
-<pre><code class="lang-javascript">rect.masker.fill(<span class="string">'#fff'</span>)</code></pre>
-<p><em>This functionality requires the mask.js module which is included in the default distribution.</em></p>
-<h2 id='clipping-elements' id="clipping-elements">Clipping elements</h2 id='clipping-elements'>
-<p>Clipping elements works exactly the same as masking elements. The only difference is that clipped elements will adopt the geometry of the clipping element. Therefore events are only triggered when entering the clipping element whereas with masks the masked element triggers the event. Another difference is that masks can define opacity with their fill color and clipPaths don&#39;t.</p>
-<h3 id='clipping-elements/clipwith' id="clipwith-">clipWith()</h3 id='clipping-elements/clipwith'>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">80</span>, <span class="number">40</span>).move(<span class="number">10</span>, <span class="number">10</span>)
-
-rect.clipWith(ellipse)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='clipping-elements/clip' id="clip-">clip()</h3 id='clipping-elements/clip'>
-<p>Clip multiple elements:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> ellipse = draw.ellipse(<span class="number">80</span>, <span class="number">40</span>).move(<span class="number">10</span>, <span class="number">10</span>)
-<span class="keyword">var</span> text = draw.text(<span class="string">'SVG.JS'</span>).move(<span class="number">10</span>, <span class="number">10</span>).font({ size: <span class="number">36</span> })
-
-<span class="keyword">var</span> clip = draw.clip().add(text).add(ellipse)
-
-rect.clipWith(clip)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.ClipPath</code></strong></p>
-<h3 id='clipping-elements/unclip' id="unclip-">unclip()</h3 id='clipping-elements/unclip'>
-<p>Unclipping the elements can be done with the <code>unclip()</code> method:</p>
-<pre><code class="lang-javascript">rect.unclip()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='clipping-elements/remove' id="remove-">remove()</h3 id='clipping-elements/remove'>
-<p>Removing the clip alltogether will also <code>unclip()</code> all clipped elements as well:</p>
-<pre><code class="lang-javascript">clip.remove()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='clipping-elements/clipper' id="clipper">clipper</h3 id='clipping-elements/clipper'>
-<p>For your convenience, the clipping element is also referenced in the clipped element. This can be useful in case you want to change the clipPath:</p>
-<pre><code class="lang-javascript">rect.clipper.move(<span class="number">10</span>, <span class="number">10</span>)</code></pre>
-<p><em>This functionality requires the clip.js module which is included in the default distribution.</em></p>
-<h2 id='arranging-elements' id="arranging-elements">Arranging elements</h2 id='arranging-elements'>
-<p>You can arrange elements within their parent SVG document using the following methods.</p>
-<h3 id='arranging-elements/front' id="front-">front()</h3 id='arranging-elements/front'>
-<p>Move element to the front:</p>
-<pre><code class="lang-javascript">rect.front()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arranging-elements/back' id="back-">back()</h3 id='arranging-elements/back'>
-<p>Move element to the back:</p>
-<pre><code class="lang-javascript">rect.back()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arranging-elements/forward' id="forward-">forward()</h3 id='arranging-elements/forward'>
-<p>Move element one step forward:</p>
-<pre><code class="lang-javascript">rect.forward()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arranging-elements/backward' id="backward-">backward()</h3 id='arranging-elements/backward'>
-<p>Move element one step backward:</p>
-<pre><code class="lang-javascript">rect.backward()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arranging-elements/siblings' id="siblings-">siblings()</h3 id='arranging-elements/siblings'>
-<p>The arrange.js module brings some additional methods. To get all siblings of rect, including rect itself:</p>
-<pre><code class="lang-javascript">rect.siblings()</code></pre>
-<p><strong><code>returns</code>: <code>array</code></strong></p>
-<h3 id='arranging-elements/position' id="position-">position()</h3 id='arranging-elements/position'>
-<p>Get the position (a number) of rect between its siblings:</p>
-<pre><code class="lang-javascript">rect.position()</code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='arranging-elements/next' id="next-">next()</h3 id='arranging-elements/next'>
-<p>Get the next sibling:</p>
-<pre><code class="lang-javascript">rect.next()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='arranging-elements/previous' id="previous-">previous()</h3 id='arranging-elements/previous'>
-<p>Get the previous sibling:</p>
-<pre><code class="lang-javascript">rect.previous()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='arranging-elements/before' id="before-">before()</h3 id='arranging-elements/before'>
-<p>Insert an element before another:</p>
-<pre><code class="lang-javascript"><span class="comment">// inserts circle before rect</span>
-rect.before(circle)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arranging-elements/after' id="after-">after()</h3 id='arranging-elements/after'>
-<p>Insert an element after another:</p>
-<pre><code class="lang-javascript"><span class="comment">// inserts circle after rect</span>
-rect.after(circle)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<p><em>This functionality requires the arrange.js module which is included in the default distribution.</em></p>
-<h2 id='sets' id="sets">Sets</h2 id='sets'>
-<p>Sets are very useful if you want to modify or animate multiple elements at once. A set will accept all the same methods accessible on individual elements, even the ones that you add with your own plugins! Creating a set is exactly as you would expect:</p>
-<pre><code class="lang-javascript"><span class="comment">// create some elements</span>
-<span class="keyword">var</span> rect = draw.rect(<span class="number">100</span>,<span class="number">100</span>)
-<span class="keyword">var</span> circle = draw.circle(<span class="number">100</span>).move(<span class="number">100</span>,<span class="number">100</span>).fill(<span class="string">'#f09'</span>)
-
-<span class="comment">// create a set and add the elements</span>
-<span class="keyword">var</span> set = draw.set()
-set.add(rect).add(circle)
-
-<span class="comment">// change the fill of all elements in the set at once</span>
-set.fill(<span class="string">'#ff0'</span>)</code></pre>
-<p>A single element can be a member of many sets. Sets also don&#39;t have a structural representation, in fact they are just fancy array&#39;s.</p>
-<h3 id='sets/add' id="add-">add()</h3 id='sets/add'>
-<p>Add an element to a set:</p>
-<pre><code class="lang-javascript">set.add(rect)</code></pre>
-<p>Quite a useful feature of sets is the ability to accept multiple elements at once:</p>
-<pre><code class="lang-javascript">set.add(rect, circle)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='sets/each' id="each-">each()</h3 id='sets/each'>
-<p>Iterating over all members in a set is the same as with svg containers:</p>
-<pre><code class="lang-javascript">set.each(<span class="keyword">function</span>(i) {
-  <span class="keyword">this</span>.attr(<span class="string">'id'</span>, <span class="string">'shiny_new_id_'</span> + i)
-})</code></pre>
-<p>Note that <code>this</code> refers to the current child element.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='sets/has' id="has-">has()</h3 id='sets/has'>
-<p>Determine if an element is member of the set:</p>
-<pre><code class="lang-javascript">set.has(rect)</code></pre>
-<p><strong><code>returns</code>: <code>boolean</code></strong></p>
-<h3 id='sets/index' id="index-">index()</h3 id='sets/index'>
-<p>Returns the index of a given element in the set.</p>
-<pre><code class="lang-javascript">set.index(rect) <span class="comment">//-&gt; -1 if element is not a member</span></code></pre>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='sets/get' id="get-">get()</h3 id='sets/get'>
-<p>Gets the element at a given index:</p>
-<pre><code class="lang-javascript">set.get(<span class="number">1</span>)</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='sets/first' id="first-">first()</h3 id='sets/first'>
-<p>Gets the first element:</p>
-<pre><code class="lang-javascript">set.first()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='sets/last' id="last-">last()</h3 id='sets/last'>
-<p>Gets the last element:</p>
-<pre><code class="lang-javascript">set.last()</code></pre>
-<p><strong><code>returns</code>: <code>element</code></strong></p>
-<h3 id='sets/bbox' id="bbox-">bbox()</h3 id='sets/bbox'>
-<p>Get the bounding box of all elements in the set:</p>
-<pre><code class="lang-javascript">set.bbox()</code></pre>
-<p><strong><code>returns</code>: <code>SVG.BBox</code></strong></p>
-<h3 id='sets/remove' id="remove-">remove()</h3 id='sets/remove'>
-<p>To remove an element from a set:</p>
-<pre><code class="lang-javascript">set.remove(rect)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='sets/clear' id="clear-">clear()</h3 id='sets/clear'>
-<p>Or to remove all elements from a set:</p>
-<pre><code class="lang-javascript">set.clear()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='sets/animate' id="animate-">animate()</h3 id='sets/animate'>
-<p>Sets work with animations as well:</p>
-<pre><code class="lang-javascript">set.animate(<span class="number">3000</span>).fill(<span class="string">'#ff0'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>SVG.SetFX</code></strong></p>
-<h2 id='gradient' id="gradient">Gradient</h2 id='gradient'>
-<h3 id='gradient/gradient' id="gradient-">gradient()</h3 id='gradient/gradient'>
-<p>There are linear and radial gradients. The linear gradient can be created like this:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> gradient = draw.gradient(<span class="string">'linear'</span>, <span class="keyword">function</span>(stop) {
-  stop.at(<span class="number">0</span>, <span class="string">'#333'</span>)
-  stop.at(<span class="number">1</span>, <span class="string">'#fff'</span>)
-})</code></pre>
-<p><strong><code>returns</code>: <code>SVG.Gradient</code></strong></p>
-<h3 id='gradient/at' id="at-">at()</h3 id='gradient/at'>
-<p>The <code>offset</code> and <code>color</code> parameters are required for stops, <code>opacity</code> is optional. Offset is float between 0 and 1, or a percentage value (e.g. <code>33%</code>). </p>
-<pre><code class="lang-javascript">stop.at(<span class="number">0</span>, <span class="string">'#333'</span>)</code></pre>
-<p>or</p>
-<pre><code class="lang-javascript">stop.at({ offset: <span class="number">0</span>, color: <span class="string">'#333'</span>, opacity: <span class="number">1</span> })</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='gradient/from' id="from-">from()</h3 id='gradient/from'>
-<p>To define the direction you can set from <code>x</code>, <code>y</code> and to <code>x</code>, <code>y</code>:</p>
-<pre><code class="lang-javascript">gradient.from(<span class="number">0</span>, <span class="number">0</span>).to(<span class="number">0</span>, <span class="number">1</span>)</code></pre>
-<p>The from and to values are also expressed in percent.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='gradient/to' id="to-">to()</h3 id='gradient/to'>
-<p>To define the direction you can set from <code>x</code>, <code>y</code> and to <code>x</code>, <code>y</code>:</p>
-<pre><code class="lang-javascript">gradient.from(<span class="number">0</span>, <span class="number">0</span>).to(<span class="number">0</span>, <span class="number">1</span>)</code></pre>
-<p>The from and to values are also expressed in percent.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='gradient/radius' id="radius-">radius()</h3 id='gradient/radius'>
-<p>Radial gradients have a <code>radius()</code> method to define the outermost radius to where the inner color should develop:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> gradient = draw.gradient(<span class="string">'radial'</span>, <span class="keyword">function</span>(stop) {
-  stop.at(<span class="number">0</span>, <span class="string">'#333'</span>)
-  stop.at(<span class="number">1</span>, <span class="string">'#fff'</span>)
-})
-
-gradient.from(<span class="number">0.5</span>, <span class="number">0.5</span>).to(<span class="number">0.5</span>, <span class="number">0.5</span>).radius(<span class="number">0.5</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='gradient/update' id="update-">update()</h3 id='gradient/update'>
-<p>A gradient can also be updated afterwards:</p>
-<pre><code class="lang-javascript">gradient.update(<span class="keyword">function</span>(stop) {
-  stop.at(<span class="number">0.1</span>, <span class="string">'#333'</span>, <span class="number">0.2</span>)
-  stop.at(<span class="number">0.9</span>, <span class="string">'#f03'</span>, <span class="number">1</span>)
-})</code></pre>
-<p>And even a single stop can be updated:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> s1, s2, s3
-
-draw.gradient(<span class="string">'radial'</span>, <span class="keyword">function</span>(stop) {
-  s1 = stop.at(<span class="number">0</span>, <span class="string">'#000'</span>)
-  s2 = stop.at(<span class="number">0.5</span>, <span class="string">'#f03'</span>)
-  s3 = stop.at(<span class="number">1</span>, <span class="string">'#066'</span>)
-})
-
-s1.update(<span class="number">0.1</span>, <span class="string">'#0f0'</span>, <span class="number">1</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='gradient/get' id="get-">get()</h3 id='gradient/get'>
-<p>The <code>get()</code> method makes it even easier to get a stop from an existing gradient:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> gradient = draw.gradient(<span class="string">'radial'</span>, <span class="keyword">function</span>(stop) {
-  stop.at({ offset: <span class="number">0</span>, color: <span class="string">'#000'</span>, opacity: <span class="number">1</span> })   <span class="comment">// -&gt; first</span>
-  stop.at({ offset: <span class="number">0.5</span>, color: <span class="string">'#f03'</span>, opacity: <span class="number">1</span> }) <span class="comment">// -&gt; second</span>
-  stop.at({ offset: <span class="number">1</span>, color: <span class="string">'#066'</span>, opacity: <span class="number">1</span> })   <span class="comment">// -&gt; third</span>
-})
-
-<span class="keyword">var</span> s1 = gradient.get(<span class="number">0</span>) <span class="comment">// -&gt; returns "first" stop</span></code></pre>
-<p><strong><code>returns</code>: <code>SVG.Stop</code></strong></p>
-<h3 id='gradient/fill' id="fill-">fill()</h3 id='gradient/fill'>
-<p>Finally, to use the gradient on an element:</p>
-<pre><code class="lang-javascript">rect.attr({ fill: gradient })</code></pre>
-<p>Or:</p>
-<pre><code class="lang-javascript">rect.fill(gradient)</code></pre>
-<p>By passing the gradient instance as the fill on any element, the <code>fill()</code> method will be called:</p>
-<pre><code class="lang-javascript">gradient.fill() <span class="comment">//-&gt; returns 'url(#SvgjsGradient1234)'</span></code></pre>
-<p><a href="http://www.w3schools.com/svg/svg_grad_linear.asp">W3Schools</a> has a great example page on how
-<a href="http://www.w3schools.com/svg/svg_grad_linear.asp">linear gradients</a> and
-<a href="http://www.w3schools.com/svg/svg_grad_radial.asp">radial gradients</a> work.</p>
-<p><em>This functionality requires the gradient.js module which is included in the default distribution.</em></p>
-<p><strong><code>returns</code>: <code>value</code></strong></p>
-<h2 id='pattern' id="pattern">Pattern</h2 id='pattern'>
-<h3 id='pattern/pattern' id="pattern-">pattern()</h3 id='pattern/pattern'>
-<p>Creating a pattern is very similar to creating gradients</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> pattern = draw.pattern(<span class="number">20</span>, <span class="number">20</span>, <span class="keyword">function</span>(add) {
-  add.rect(<span class="number">20</span>,<span class="number">20</span>).fill(<span class="string">'#f06'</span>)
-  add.rect(<span class="number">10</span>,<span class="number">10</span>)
-  add.rect(<span class="number">10</span>,<span class="number">10</span>).move(<span class="number">10</span>,<span class="number">10</span>)
-})</code></pre>
-<p>This creates a checkered pattern of 20 x 20 pixels. You can add any available element to your pattern.</p>
-<p><strong><code>returns</code>: <code>SVG.Pattern</code></strong></p>
-<h3 id='pattern/update' id="update-">update()</h3 id='pattern/update'>
-<p>A pattern can also be updated afterwards:</p>
-<pre><code class="lang-javascript">pattern.update(<span class="keyword">function</span>(add) {
-  add.circle(<span class="number">15</span>).center(<span class="number">10</span>,<span class="number">10</span>)
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='pattern/fill' id="fill-">fill()</h3 id='pattern/fill'>
-<p>Finally, to use the pattern on an element:</p>
-<pre><code class="lang-javascript">rect.attr({ fill: pattern })</code></pre>
-<p>Or:</p>
-<pre><code class="lang-javascript">rect.fill(pattern)</code></pre>
-<p>By passing the pattern instance as the fill on any element, the <code>fill()</code> method will be called on th pattern instance:</p>
-<pre><code class="lang-javascript">pattern.fill() <span class="comment">//-&gt; returns 'url(#SvgjsPattern1234)'</span></code></pre>
-<p><strong><code>returns</code>: <code>value</code></strong></p>
-<h2 id='marker' id="marker">Marker</h2 id='marker'>
-<h3 id='marker/marker' id="marker-">marker()</h3 id='marker/marker'>
-<p>Markers can be added to every individual point of a <code>line</code>, <code>polyline</code>, <code>polygon</code> and <code>path</code>. There are three types of markers: <code>start</code>, <code>mid</code> and <code>end</code>. Where <code>start</code> represents the first point, <code>end</code> the last and <code>mid</code> every point in between.</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> path = draw.path(<span class="string">'M 100 200 C 200 100 300  0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100z'</span>)
-
-path.fill(<span class="string">'none'</span>).stroke({ width: <span class="number">1</span> })
-
-path.marker(<span class="string">'start'</span>, <span class="number">10</span>, <span class="number">10</span>, <span class="keyword">function</span>(add) {
-  add.circle(<span class="number">10</span>).fill(<span class="string">'#f06'</span>)
-})
-path.marker(<span class="string">'mid'</span>, <span class="number">10</span>, <span class="number">10</span>, <span class="keyword">function</span>(add) {
-  add.rect(<span class="number">10</span>, <span class="number">10</span>)
-})
-path.marker(<span class="string">'end'</span>, <span class="number">20</span>, <span class="number">20</span>, <span class="keyword">function</span>(add) {
-  add.circle(<span class="number">6</span>).center(<span class="number">4</span>, <span class="number">5</span>)
-  add.circle(<span class="number">6</span>).center(<span class="number">4</span>, <span class="number">15</span>)
-  add.circle(<span class="number">6</span>).center(<span class="number">16</span>, <span class="number">10</span>)
-
-  <span class="keyword">this</span>.fill(<span class="string">'#0f6'</span>)
-})</code></pre>
-<p>The <code>marker()</code> method can be used in three ways. Firstly, a marker can be created on any container element (e.g. svg, nested, group, ...). This is useful if you plan to reuse the marker many times so it will create a marker in the defs but not show it yet:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> marker = draw.marker(<span class="number">10</span>, <span class="number">10</span>, <span class="keyword">function</span>() {
-  add.rect(<span class="number">10</span>, <span class="number">10</span>)
-})</code></pre>
-<p>Secondly a marker can be created and applied directly on its target element:</p>
-<pre><code class="lang-javascript">path.marker(<span class="string">'start'</span>, <span class="number">10</span>, <span class="number">10</span>, <span class="keyword">function</span>() {
-  add.circle(<span class="number">10</span>).fill(<span class="string">'#f06'</span>)
-})</code></pre>
-<p>This will create a marker in the defs and apply it directly. Note that the first argument defines the position of the marker and that there are four arguments as opposed to three with the first example.</p>
-<p>Lastly, if a marker is created for reuse on a container element, it can be applied directly on the target element:</p>
-<pre><code class="lang-javascript">path.marker(<span class="string">'mid'</span>, marker)</code></pre>
-<p>Finally, to get a marker instance from the target element reference:</p>
-<pre><code class="lang-javascript">path.reference(<span class="string">'marker-end'</span>)</code></pre>
-<h3 id='marker/ref' id="ref-">ref()</h3 id='marker/ref'>
-<p>By default the <code>refX</code> and <code>refY</code> attributes of a marker are set to respectively half the <code>width</code> nd <code>height</code> values. To define the <code>refX</code> and <code>refY</code> of a marker differently:</p>
-<pre><code class="lang-javascript">marker.ref(<span class="number">2</span>, <span class="number">7</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='marker/update' id="update-">update()</h3 id='marker/update'>
-<p>Updating the contents of a marker will <code>clear()</code> the existing content and add the content defined in the block passed as the first argument:</p>
-<pre><code class="lang-javascript">marker.update(<span class="keyword">function</span>(add) {
-  add.circle(<span class="number">10</span>)
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='marker/width' id="width-">width()</h3 id='marker/width'>
-<p>Defines the <code>markerWidth</code> attribute:</p>
-<pre><code class="lang-javascript">marker.width(<span class="number">10</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='marker/height' id="height-">height()</h3 id='marker/height'>
-<p>Defines the <code>markerHeight</code> attribute:</p>
-<pre><code class="lang-javascript">marker.height(<span class="number">10</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='marker/size' id="size-">size()</h3 id='marker/size'>
-<p>Defines the <code>markerWidth</code> and <code>markerHeight</code> attributes:</p>
-<pre><code class="lang-javascript">marker.size(<span class="number">10</span>, <span class="number">10</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='data' id="data">Data</h2 id='data'>
-<h3 id='data/setting' id="setting">Setting</h3 id='data/setting'>
-<p>The <code>data()</code> method allows you to bind arbitrary objects, strings and numbers to SVG elements:</p>
-<pre><code class="lang-javascript">rect.data(<span class="string">'key'</span>, { value: { data: <span class="number">0.3</span> }})</code></pre>
-<p>Or set multiple values at once:</p>
-<pre><code class="lang-javascript">rect.data({
-  forbidden: <span class="string">'fruit'</span>
-, multiple: {
-    values: <span class="string">'in'</span>
-  , an: <span class="string">'object'</span>
-  }
-})</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='data/getting' id="getting">Getting</h3 id='data/getting'>
-<p>Fetching the values is similar to the <code>attr()</code> method:</p>
-<pre><code class="lang-javascript">rect.data(<span class="string">'key'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='data/removing' id="removing">Removing</h3 id='data/removing'>
-<p>Removing the data altogether:</p>
-<pre><code class="lang-javascript">rect.data(<span class="string">'key'</span>, <span class="literal">null</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='data/sustaining-data-types' id="sustaining-data-types">Sustaining data types</h3 id='data/sustaining-data-types'>
-<p>Your values will always be stored as JSON and in some cases this might not be desirable. If you want to store the value as-is, just pass true as the third argument:</p>
-<pre><code class="lang-javascript">rect.data(<span class="string">'key'</span>, <span class="string">'value'</span>, <span class="literal">true</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='memory' id="memory">Memory</h2 id='memory'>
-<h3 id='memory/remember' id="remember-">remember()</h3 id='memory/remember'>
-<p>Storing data in-memory is very much like setting attributes:</p>
-<pre><code class="lang-javascript">rect.remember(<span class="string">'oldBBox'</span>, rect.bbox())</code></pre>
-<p>Multiple values can also be remembered at once:</p>
-<pre><code class="lang-javascript">rect.remember({
-  oldFill:    rect.attr(<span class="string">'fill'</span>)
-, oldStroke:  rect.attr(<span class="string">'stroke'</span>)
-})</code></pre>
-<p>To retrieve a memory</p>
-<pre><code class="lang-javascript">rect.remember(<span class="string">'oldBBox'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='memory/forget' id="forget-">forget()</h3 id='memory/forget'>
-<p>Erasing a single memory:</p>
-<pre><code class="lang-javascript">rect.forget(<span class="string">'oldBBox'</span>)</code></pre>
-<p>Or erasing multiple memories at once:</p>
-<pre><code class="lang-javascript">rect.forget(<span class="string">'oldFill'</span>, <span class="string">'oldStroke'</span>)</code></pre>
-<p>And finally, just erasing the whole memory:</p>
-<pre><code class="lang-javascript">rect.forget()</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h2 id='events' id="events">Events</h2 id='events'>
-<h3 id='events/basic-events' id="basic-events">Basic events</h3 id='events/basic-events'>
-<p>Events can be bound to elements as follows:</p>
-<pre><code class="lang-javascript">rect.click(<span class="keyword">function</span>() {
-  <span class="keyword">this</span>.fill({ color: <span class="string">'#f06'</span> })
-})</code></pre>
-<p>Removing it is quite as easy:</p>
-<pre><code class="lang-javascript">rect.click(<span class="literal">null</span>)</code></pre>
-<p>All available evenets are: <code>click</code>, <code>dblclick</code>, <code>mousedown</code>, <code>mouseup</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>, <code>mouseenter</code>, <code>mouseleave</code>, <code>touchstart</code>, <code>touchmove</code>, <code>touchleave</code>, <code>touchend</code> and <code>touchcancel</code>.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='events/event-listeners' id="event-listeners">Event listeners</h3 id='events/event-listeners'>
-<p>You can also bind event listeners to elements:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> click = <span class="keyword">function</span>() {
-  <span class="keyword">this</span>.fill({ color: <span class="string">'#f06'</span> })
-}
-
-rect.on(<span class="string">'click'</span>, click)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<p>Unbinding events is just as easy:</p>
-<pre><code class="lang-javascript">rect.off(<span class="string">'click'</span>, click)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<p>But there is more to event listeners. You can bind events to html elements as well:</p>
-<pre><code class="lang-javascript">SVG.on(window, <span class="string">'click'</span>, click)</code></pre>
-<p>Obviously unbinding is practically the same:</p>
-<pre><code class="lang-javascript">SVG.off(window, <span class="string">'click'</span>, click)</code></pre>
-<h3 id='events/custom-events' id="custom-events">Custom events</h3 id='events/custom-events'>
-<p>You can even create your own events.</p>
-<p>The only thing you need to do is register your own event:</p>
-<pre><code class="lang-javascript">SVG.registerEvent(<span class="string">'my:event'</span>)</code></pre>
-<p>Next you can add an event listener for your newly created event:</p>
-<pre><code class="lang-javascript">rect.on(<span class="string">'my:event'</span>, <span class="keyword">function</span>() {
-  alert(<span class="string">'ta-da!'</span>)
-})</code></pre>
-<p>Now you are ready to fire the event whenever you need:</p>
-<pre><code class="lang-javascript"><span class="function"><span class="keyword">function</span> <span class="title">whenSomethingHappens</span><span class="params">()</span> {</span>
-  rect.fire(<span class="string">'my:event'</span>) 
-}</code></pre>
-<p><em>Important: always make sure you namespace your event to avoid conflicts. Preferably use something very specific. So <code>wicked:event</code> for example would be better than something generic like <code>svg:event</code>.</em></p>
-<h2 id='numbers' id="numbers">Numbers</h2 id='numbers'>
-<p>Numbers in SVG.js have a dedicated number class to be able to process string values. Creating a new number is simple:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> number = <span class="keyword">new</span> SVG.Number(<span class="string">'78%'</span>)
-number.plus(<span class="string">'3%'</span>).toString() <span class="comment">//-&gt; returns '81%'</span>
-number.valueOf() <span class="comment">//-&gt; returns 0.81</span></code></pre>
-<p>Operators are defined as methods on the <code>SVG.Number</code> instance.</p>
-<h3 id='numbers/plus' id="plus-">plus()</h3 id='numbers/plus'>
-<p>Addition:</p>
-<pre><code class="lang-javascript">number.plus(<span class="string">'3%'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/minus' id="minus-">minus()</h3 id='numbers/minus'>
-<p>Subtraction:</p>
-<pre><code class="lang-javascript">number.minus(<span class="string">'3%'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/times' id="times-">times()</h3 id='numbers/times'>
-<p>Multiplication:</p>
-<pre><code class="lang-javascript">number.times(<span class="number">2</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/divide' id="divide-">divide()</h3 id='numbers/divide'>
-<p>Division:</p>
-<pre><code class="lang-javascript">number.divide(<span class="string">'3%'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/to' id="to-">to()</h3 id='numbers/to'>
-<p>Change number to another unit:</p>
-<pre><code class="lang-javascript">number.to(<span class="string">'px'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/morph' id="morph-">morph()</h3 id='numbers/morph'>
-<p>Make a number morphable:</p>
-<pre><code class="lang-javascript">number.morph(<span class="string">'11%'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='numbers/at' id="at-">at()</h3 id='numbers/at'>
-<p>Get morphable number at given position:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> number = <span class="keyword">new</span> SVG.Number(<span class="string">'79%'</span>).morph(<span class="string">'3%'</span>)
-number.at(<span class="number">0.55</span>).toString() <span class="comment">//-&gt; '37.2%'</span></code></pre>
-<p><strong><code>returns</code>: <code>SVG.Number</code></strong></p>
-<h2 id='colors' id="colors">Colors</h2 id='colors'>
-<p>Svg.js has a dedicated color class handling different types of colors. Accepted values are:</p>
-<ul>
-<li>hex string; three based (e.g. #f06) or six based (e.g. #ff0066) <code>new SVG.Color(&#39;#f06&#39;)</code></li>
-<li>rgb string; e.g. rgb(255, 0, 102) <code>new SVG.Color(&#39;rgb(255, 0, 102)&#39;)</code></li>
-<li>rgb object; e.g. { r: 255, g: 0, b: 102 } <code>new SVG.Color({ r: 255, g: 0, b: 102 })</code></li>
-</ul>
-<p>Note that when working with objects is important to provide all three values every time.</p>
-<p>The <code>SVG.Color</code> instance has a few methods of its own.</p>
-<h3 id='colors/tohex' id="tohex-">toHex()</h3 id='colors/tohex'>
-<p>Get hex value:</p>
-<pre><code class="lang-javascript">color.toHex() <span class="comment">//-&gt; returns '#ff0066'</span></code></pre>
-<p><strong><code>returns</code>: hex color string</strong></p>
-<h3 id='colors/torgb' id="torgb-">toRgb()</h3 id='colors/torgb'>
-<p>Get rgb string value:</p>
-<pre><code class="lang-javascript">color.toRgb() <span class="comment">//-&gt; returns 'rgb(255,0,102)'</span></code></pre>
-<p><strong><code>returns</code>: rgb color string</strong></p>
-<h3 id='colors/brightness' id="brightness-">brightness()</h3 id='colors/brightness'>
-<p>Get the brightness of a color:</p>
-<pre><code class="lang-javascript">color.brightness() <span class="comment">//-&gt; returns 0.344</span></code></pre>
-<p>This is the perceived brighness where <code>0</code> is black and <code>1</code> is white.</p>
-<p><strong><code>returns</code>: <code>number</code></strong></p>
-<h3 id='colors/morph' id="morph-">morph()</h3 id='colors/morph'>
-<p>Make a color morphable:</p>
-<pre><code class="lang-javascript">color.morph(<span class="string">'#000'</span>)</code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='colors/at' id="at-">at()</h3 id='colors/at'>
-<p>Get morphable color at given position:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> color = <span class="keyword">new</span> SVG.Color(<span class="string">'#ff0066'</span>).morph(<span class="string">'#000'</span>)
-color.at(<span class="number">0.5</span>).toHex() <span class="comment">//-&gt; '#7f0033'</span></code></pre>
-<p><strong><code>returns</code>: <code>SVG.Color</code></strong></p>
-<h2 id='arrays' id="arrays">Arrays</h2 id='arrays'>
-<p>In SVG.js every value list string can be cast and passed as an array. This makes writing them more convenient but also adds a lot of key functionality to them.</p>
-<h3 id='arrays/svg-array' id="svg-array">SVG.Array</h3 id='arrays/svg-array'>
-<p>Is for simple, whitespace separated value strings:</p>
-<pre><code class="lang-javascript"><span class="string">'0.343 0.669 0.119 0 0 0.249 -0.626 0.13 0 0 0.172 0.334 0.111 0 0 0 0 0 1 0'</span></code></pre>
-<p>Can also be passed like this in a more manageable format:</p>
-<pre><code class="lang-javascript"><span class="keyword">new</span> SVG.Array([ <span class="number">.343</span>,  <span class="number">.669</span>, <span class="number">.119</span>, <span class="number">0</span>,   <span class="number">0</span> 
-              , <span class="number">.249</span>, -<span class="number">.626</span>, <span class="number">.130</span>, <span class="number">0</span>,   <span class="number">0</span>
-              , <span class="number">.172</span>,  <span class="number">.334</span>, <span class="number">.111</span>, <span class="number">0</span>,   <span class="number">0</span>
-              , <span class="number">.000</span>,  <span class="number">.000</span>, <span class="number">.000</span>, <span class="number">1</span>,  -<span class="number">0</span> ])</code></pre>
-<h3 id='arrays/svg-pointarray' id="svg-pointarray">SVG.PointArray</h3 id='arrays/svg-pointarray'>
-<p>Is a bit more complex and is used for polyline and polygon elements. This is a poly-point string:</p>
-<pre><code class="lang-javascript"><span class="string">'0,0 100,100'</span></code></pre>
-<p>The dynamic representation:</p>
-<pre><code class="lang-javascript">[
-  [<span class="number">0</span>, <span class="number">0</span>]
-, [<span class="number">100</span>, <span class="number">100</span>]
-]</code></pre>
-<p>Precompiling it as a <code>SVG.PointArray</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">new</span> SVG.PointArray([
-  [<span class="number">0</span>, <span class="number">0</span>]
-, [<span class="number">100</span>, <span class="number">100</span>]
-])</code></pre>
-<p>Note that every instance of <code>SVG.Polyline</code> and <code>SVG.Polygon</code> carries a reference to the <code>SVG.PointArray</code> instance:</p>
-<pre><code class="lang-javascript">polygon.array() <span class="comment">//-&gt; returns the SVG.PointArray instance</span></code></pre>
-<p><em>Javascript inheritance stack: <code>SVG.PointArray</code> &lt; <code>SVG.Array</code></em></p>
-<h3 id='arrays/svg-patharray' id="svg-patharray">SVG.PathArray</h3 id='arrays/svg-patharray'>
-<p>Path arrays carry arrays representing every segment in a path string:</p>
-<pre><code class="lang-javascript"><span class="string">'M0 0L100 100z'</span></code></pre>
-<p>The dynamic representation:</p>
-<pre><code class="lang-javascript">[
-  [<span class="string">'M'</span>, <span class="number">0</span>, <span class="number">0</span>]
-, [<span class="string">'L'</span>, <span class="number">100</span>, <span class="number">100</span>]
-, [<span class="string">'z'</span>]
-]</code></pre>
-<p>Precompiling it as a <code>SVG.PathArray</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">new</span> SVG.PathArray([
-  [<span class="string">'M'</span>, <span class="number">0</span>, <span class="number">0</span>]
-, [<span class="string">'L'</span>, <span class="number">100</span>, <span class="number">100</span>]
-, [<span class="string">'z'</span>]
-])</code></pre>
-<p>Note that every instance of <code>SVG.Path</code> carries a reference to the <code>SVG.PathArray</code> instance:</p>
-<pre><code class="lang-javascript">path.array() <span class="comment">//-&gt; returns the SVG.PathArray instance</span></code></pre>
-<h4 id="syntax">Syntax</h4>
-<p>The syntax for patharrays is very predictable. They are basically literal representations in the form of two dimentional arrays.</p>
-<h5 id="move-to">Move To</h5>
-<p>Original syntax is <code>M0 0</code> or <code>m0 0</code>. The SVG.js syntax <code>[&#39;M&#39;,0,0]</code> or <code>[&#39;m&#39;,0,0]</code>.</p>
-<h5 id="line-to">Line To</h5>
-<p>Original syntax is <code>L100 100</code> or <code>l100 100</code>. The SVG.js syntax <code>[&#39;L&#39;,100,100]</code> or <code>[&#39;l&#39;,100,100]</code>.</p>
-<h5 id="horizontal-line">Horizontal line</h5>
-<p>Original syntax is <code>H200</code> or <code>h200</code>. The SVG.js syntax <code>[&#39;H&#39;,200]</code> or <code>[&#39;h&#39;,200]</code>.</p>
-<h5 id="vertical-line">Vertical line</h5>
-<p>Original syntax is <code>V300</code> or <code>v300</code>. The SVG.js syntax <code>[&#39;V&#39;,300]</code> or <code>[&#39;v&#39;,300]</code>.</p>
-<h5 id="bezier-curve">Bezier curve</h5>
-<p>Original syntax is <code>C20 20 40 20 50 10</code> or <code>c20 20 40 20 50 10</code>. The SVG.js syntax <code>[&#39;C&#39;,20,20,40,20,50,10]</code> or <code>[&#39;c&#39;,20,20,40,20,50,10]</code>.</p>
-<p>Or mirrored with <code>S</code>:</p>
-<p>Original syntax is <code>S40 20 50 10</code> or <code>s40 20 50 10</code>. The SVG.js syntax <code>[&#39;S&#39;,40,20,50,10]</code> or <code>[&#39;s&#39;,40,20,50,10]</code>.</p>
-<p>Or quadratic with <code>Q</code>:</p>
-<p>Original syntax is <code>Q20 20 50 10</code> or <code>q20 20 50 10</code>. The SVG.js syntax <code>[&#39;Q&#39;,20,20,50,10]</code> or <code>[&#39;q&#39;,20,20,50,10]</code>.</p>
-<p>Or a complete shortcut with <code>T</code>:</p>
-<p>Original syntax is <code>T50 10</code> or <code>t50 10</code>. The SVG.js syntax <code>[&#39;T&#39;,50,10]</code> or <code>[&#39;t&#39;,50,10]</code>.</p>
-<h5 id="arc">Arc</h5>
-<p>Original syntax is <code>A 30 50 0 0 1 162 163</code> or <code>a 30 50 0 0 1 162 163</code>. The SVG.js syntax <code>[&#39;A&#39;,30,50,0,0,1,162,163]</code> or <code>[&#39;a&#39;,30,50,0,0,1,162,163]</code>.</p>
-<h5 id="close">Close</h5>
-<p>Original syntax is <code>Z</code> or <code>z</code>. The SVG.js syntax <code>[&#39;Z&#39;]</code> or <code>[&#39;z&#39;]</code>.</p>
-<p>The best documentation on paths can be found at <a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths">https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths</a>.</p>
-<p><em>Javascript inheritance stack: <code>SVG.PathArray</code> &lt; <code>SVG.Array</code></em></p>
-<h3 id='arrays/morph' id="morph-">morph()</h3 id='arrays/morph'>
-<p>In order to animate array values the <code>morph()</code> method lets you pass a destination value. This can be either the string value, a plain array or an instance of the same type of SVG.js array:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> array = <span class="keyword">new</span> SVG.PointArray([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">100</span>]])
-array.morph(<span class="string">'100,0 0,100 200,200'</span>)</code></pre>
-<p>This method will prepare the array ensuring both the source and destination arrays have the same length.</p>
-<p>Note that this method is currently not available on <code>SVG.PathArray</code> but will be soon.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arrays/at' id="at-">at()</h3 id='arrays/at'>
-<p>This method will morph the array to a given position between <code>0</code> and <code>1</code>. Continuing with the previous example:</p>
-<pre><code class="lang-javascript">array.at(<span class="number">0.27</span>).toString() <span class="comment">//-&gt; returns '27,0 73,100 127,127'</span></code></pre>
-<p>Note that this method is currently not available on <code>SVG.PathArray</code> but will be soon.</p>
-<p><strong><code>returns</code>: new instance</strong></p>
-<h3 id='arrays/settle' id="settle-">settle()</h3 id='arrays/settle'>
-<p>When morphing is done the <code>settle()</code> method will eliminate any transitional points like duplicates:</p>
-<pre><code class="lang-javascript">array.settle()</code></pre>
-<p>Note that this method is currently not available on <code>SVG.PathArray</code> but will be soon.</p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arrays/move' id="move-">move()</h3 id='arrays/move'>
-<p>Moves geometry of the array with the given <code>x</code> and <code>y</code> values:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> array = <span class="keyword">new</span> SVG.PointArray([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">100</span>]])
-array.move(<span class="number">33</span>,<span class="number">75</span>)
-array.toString() <span class="comment">//-&gt; returns '33,75 133,175'</span></code></pre>
-<p>Note that this method is only available on <code>SVG.PointArray</code> and <code>SVG.PathArray</code></p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arrays/size' id="size-">size()</h3 id='arrays/size'>
-<p>Resizes geometry of the array by the given <code>width</code> and <code>height</code> values:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> array = <span class="keyword">new</span> SVG.PointArray([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">100</span>]])
-array.move(<span class="number">100</span>,<span class="number">100</span>).size(<span class="number">222</span>,<span class="number">333</span>)
-array.toString() <span class="comment">//-&gt; returns '100,100 322,433'</span></code></pre>
-<p>Note that this method is only available on <code>SVG.PointArray</code> and <code>SVG.PathArray</code></p>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arrays/reverse' id="reverse-">reverse()</h3 id='arrays/reverse'>
-<p>Reverses the order of the array:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> array = <span class="keyword">new</span> SVG.PointArray([[<span class="number">0</span>, <span class="number">0</span>], [<span class="number">100</span>, <span class="number">100</span>]])
-array.reverse()
-array.toString() <span class="comment">//-&gt; returns '100,100 0,0'</span></code></pre>
-<p><strong><code>returns</code>: <code>itself</code></strong></p>
-<h3 id='arrays/bbox' id="bbox-">bbox()</h3 id='arrays/bbox'>
-<p>Gets the bounding box of the geometry of the array:</p>
-<pre><code class="lang-javascript">array.bbox()</code></pre>
-<p>Note that this method is only available on <code>SVG.PointArray</code> and <code>SVG.PathArray</code></p>
-<p><strong><code>returns</code>: <code>object</code></strong></p>
-<h2 id='matrices' id="matrices">Matrices</h2 id='matrices'>
-<p>Matrices in SVG.js have their own class <code>SVG.Matrix</code>, wrapping the native <code>SVGMatrix</code>. They add a lot of functionality like extracting transform values, matrix morphing and improvements on the native methods.</p>
-<h3 id='matrices/svg-matrix' id="svg-matrix">SVG.Matrix</h3 id='matrices/svg-matrix'>
-<p>In SVG.js matrices accept various values on initialization.</p>
-<p>Without a value:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,0,0)</span></code></pre>
-<p>Six arguments:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix(<span class="number">1</span>, <span class="number">0</span>, <span class="number">0</span>, <span class="number">1</span>, <span class="number">100</span>, <span class="number">150</span>)
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,100,150)</span></code></pre>
-<p>A string value:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix(<span class="string">'1,0,0,1,100,150'</span>)
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,100,150)</span></code></pre>
-<p>An object value:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix({ a: <span class="number">1</span>, b: <span class="number">0</span>, c: <span class="number">0</span>, d: <span class="number">1</span>, e: <span class="number">100</span>, f: <span class="number">150</span> })
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,100,150)</span></code></pre>
-<p>A native <code>SVGMatrix</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> svgMatrix = svgElement.getCTM()
-<span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix(svgMatrix)
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,0,0)</span></code></pre>
-<p>Even an instance of <code>SVG.Element</code>:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rect = draw.rect(<span class="number">50</span>, <span class="number">25</span>)
-<span class="keyword">var</span> matrix = <span class="keyword">new</span> SVG.Matrix(rect)
-matrix.toString() <span class="comment">//-&gt; returns matrix(1,0,0,1,0,0)</span></code></pre>
-<h3 id='matrices/extract' id="extract-">extract()</h3 id='matrices/extract'>
-<p>Get the calculated values of matrix:</p>
-<pre><code class="lang-javascript"><span class="keyword">new</span> SVG.Matrix().extract()</code></pre>
-<p>returns:</p>
-<pre><code class="lang-javascript">{
-  x:        <span class="number">0</span>
-, y:        <span class="number">0</span>
-, skewX:    <span class="number">0</span>
-, skewY:    <span class="number">0</span>
-, scaleX:   <span class="number">1</span>
-, scaleY:   <span class="number">1</span>
-, rotation: <span class="number">0</span>
-}</code></pre>
-<h2 id='extending-functionality' id="extending-functionality">Extending functionality</h2 id='extending-functionality'>
-<h3 id='extending-functionality/svg-invent' id="svg-invent-">SVG.invent()</h3 id='extending-functionality/svg-invent'>
-<p>Creating your own custom elements with SVG.js is piece of cake thanks to the <code>SVG.invent</code> function. For the sake of this example, lets &quot;invent&quot; a shape. We want a <code>rect</code> with rounded corners that are always proportional to the height of the element. The new shape lives in the <code>SVG</code> namespace and is called <code>Rounded</code>. Here is how we achieve that.</p>
-<pre><code class="lang-javascript">SVG.Rounded = SVG.invent({
-  <span class="comment">// Define the type of element that should be created</span>
-  create: <span class="string">'rect'</span>
-
-  <span class="comment">// Specify from which existing class this shape inherits</span>
-, inherit: SVG.Shape
-
-  <span class="comment">// Add custom methods to invented shape</span>
-, extend: {
-    <span class="comment">// Create method to proportionally scale the rounded corners</span>
-    size: <span class="keyword">function</span>(width, height) {
-      <span class="keyword">return</span> <span class="keyword">this</span>.attr({
-        width:  width
-      , height: height
-      , rx:     height / <span class="number">5</span>
-      , ry:     height / <span class="number">5</span>
-      })
-    }
-  }
-
-  <span class="comment">// Add method to parent elements</span>
-, construct: {
-    <span class="comment">// Create a rounded element</span>
-    rounded: <span class="keyword">function</span>(width, height) {
-      <span class="keyword">return</span> <span class="keyword">this</span>.put(<span class="keyword">new</span> SVG.Rounded).size(width, height)
-    }
-
-  }
-})</code></pre>
-<p>To create the element in your drawing:</p>
-<pre><code class="lang-javascript"><span class="keyword">var</span> rounded = draw.rounded(<span class="number">200</span>, <span class="number">100</span>)</code></pre>
-<p>That&#39;s it, the invention is now ready to be used!</p>
-<h4 id="accepted-values">Accepted values</h4>
-<p>The <code>SVG.invent()</code> function always expectes an object. The object can have the following configuration values:</p>
-<ul>
-<li><code>create</code>: can be either a string with the node name (e.g. <code>rect</code>, <code>ellipse</code>, ...) or a custom initializer function; <code>[required]</code></li>
-<li><code>inherit</code>: the desired SVG.js class to inherit from (e.g. <code>SVG.Shape</code>, <code>SVG.Element</code>, <code>SVG.Container</code>, <code>SVG.Rect</code>, ...); <code>[optional but recommended]</code></li>
-<li><code>extend</code>: an object with the methods that should be applied to the element&#39;s prototype; <code>[optional]</code></li>
-<li><code>construct</code>: an objects with the methods to create the element on the parent element; <code>[optional]</code></li>
-<li><code>parent</code>: an SVG.js parent class on which the methods in the passed <code>construct</code> object should be available; <code>[optional]</code></li>
-</ul>
-<p>Svg.js uses the <code>SVG.invent()</code> function to create all internal elements, so have a look at the source to see how this function is used in various ways.</p>
-<h3 id='extending-functionality/svg-extend' id="svg-extend-">SVG.extend()</h3 id='extending-functionality/svg-extend'>
-<p>Svg.js has a modular structure. It is very easy to add you own methods at different levels. Let&#39;s say we want to add a method to all shape types then we would add our method to SVG.Shape:</p>
-<pre><code class="lang-javascript">SVG.extend(SVG.Shape, {
-  paintRed: <span class="keyword">function</span>() {
-    <span class="keyword">return</span> <span class="keyword">this</span>.fill(<span class="string">'red'</span>)
-  }
-})</code></pre>
-<p>Now all shapes will have the paintRed method available. Say we want to have the paintRed method on an ellipse apply a slightly different color:</p>
-<pre><code class="lang-javascript">SVG.extend(SVG.Ellipse, {
-  paintRed: <span class="keyword">function</span>() {
-    <span class="keyword">return</span> <span class="keyword">this</span>.fill(<span class="string">'orangered'</span>)
-  }
-})</code></pre>
-<p>The complete inheritance stack for <code>SVG.Ellipse</code> is:</p>
-<p><em><code>SVG.Ellipse</code> &lt; <code>SVG.Shape</code> &lt; <code>SVG.Element</code></em></p>
-<p>The SVG document can be extended by using:</p>
-<pre><code class="lang-javascript">SVG.extend(SVG.Doc, {
-  paintAllPink: <span class="keyword">function</span>() {
-    <span class="keyword">this</span>.each(<span class="keyword">function</span>() {
-      <span class="keyword">this</span>.fill(<span class="string">'pink'</span>)
-    })
-  }
-})</code></pre>
-<p>You can also extend multiple elements at once:</p>
-<pre><code class="lang-javascript">SVG.extend(SVG.Ellipse, SVG.Path, SVG.Polygon, {
-  paintRed: <span class="keyword">function</span>() {
-    <span class="keyword">return</span> <span class="keyword">this</span>.fill(<span class="string">'orangered'</span>)
-  }
-})</code></pre>
-<h2 id='plugins' id="plugins">Plugins</h2 id='plugins'>
-<p>Here are a few nice plugins that are available for SVG.js:</p>
-<h3 id='plugins/absorb' id="absorb">absorb</h3 id='plugins/absorb'>
-<p><a href="https://github.com/wout/svg.absorb.js">svg.absorb.js</a> absorb raw SVG data into a SVG.js instance.</p>
-<h3 id='plugins/draggable' id="draggable">draggable</h3 id='plugins/draggable'>
-<p><a href="https://github.com/wout/svg.draggable.js">svg.draggable.js</a> to make elements draggable.</p>
-<h3 id='plugins/easing' id="easing">easing</h3 id='plugins/easing'>
-<p><a href="https://github.com/wout/svg.easing.js">svg.easing.js</a> for more easing methods on animations.</p>
-<h3 id='plugins/export' id="export">export</h3 id='plugins/export'>
-<p><a href="https://github.com/wout/svg.export.js">svg.export.js</a> export raw SVG.</p>
-<h3 id='plugins/filter' id="filter">filter</h3 id='plugins/filter'>
-<p><a href="https://github.com/wout/svg.filter.js">svg.filter.js</a> adding svg filters to elements.</p>
-<h3 id='plugins/foreignobject' id="foreignobject">foreignobject</h3 id='plugins/foreignobject'>
-<p><a href="https://github.com/john-memloom/svg.foreignobject.js">svg.foreignobject.js</a> foreignObject implementation (by john-memloom).</p>
-<h3 id='plugins/import' id="import">import</h3 id='plugins/import'>
-<p><a href="https://github.com/wout/svg.import.js">svg.import.js</a> import raw SVG data.</p>
-<h3 id='plugins/math' id="math">math</h3 id='plugins/math'>
-<p><a href="https://github.com/otm/svg.math.js">svg.math.js</a> a math extension (by Nils Lagerkvist).</p>
-<h3 id='plugins/path' id="path">path</h3 id='plugins/path'>
-<p><a href="https://github.com/otm/svg.path.js">svg.path.js</a> for manually drawing paths (by Nils Lagerkvist).</p>
-<h3 id='plugins/shapes' id="shapes">shapes</h3 id='plugins/shapes'>
-<p><a href="https://github.com/wout/svg.shapes.js">svg.shapes.js</a> for more polygon based shapes.</p>
-<h3 id='plugins/topath' id="topath">topath</h3 id='plugins/topath'>
-<p><a href="https://github.com/wout/svg.topath.js">svg.topath.js</a> to convert any other shape to a path.</p>
-<h3 id='plugins/wiml' id="wiml">wiml</h3 id='plugins/wiml'>
-<p><a href="https://github.com/wout/svg.wiml.js">svg.wiml.js</a> a templating language for svg output.</p>
-<h2 id='contributing' id="contributing">Contributing</h2 id='contributing'>
-<p>All contributions are very welcome but please make sure you:</p>
-<ul>
-<li>maintain the coding style<ul>
-<li><strong>indentation</strong> of 2 spaces</li>
-<li>no tailing <strong>semicolons</strong></li>
-<li>single <strong>quotes</strong></li>
-<li>use one line <strong>comments</strong> to describe any additions</li>
-<li>look around and you&#39;ll know what to do</li>
-</ul>
-</li>
-<li><strong>write at least one spec example per implementation or modification</strong></li>
-</ul>
-<p>Before running the specs you will need to build the library.
-Be aware that pull requests without specs will be declined.</p>
-<h2 id='building' id="building">Building</h2 id='building'>
-<p>After contributing you probably want to build the library to run some specs. Make sure you have Node.js installed on your system, <code>cd</code> to the svg.js directory and run:</p>
-<pre><code class="lang-sh"><span class="variable">$ </span>npm install</code></pre>
-<p>Build SVG.js by running <code>gulp</code>:</p>
-<pre><code class="lang-sh"><span class="variable">$ </span>gulp</code></pre>
-<p>The resulting files are:</p>
-<ol>
-<li><code>dist/svg.js</code></li>
-<li><code>dist/svg.min.js</code></li>
-</ol>
-<h2 id='compatibility' id="compatibility">Compatibility</h2 id='compatibility'>
-<h3 id='compatibility/desktop' id="desktop">Desktop</h3 id='compatibility/desktop'>
-<ul>
-<li>Firefox 3+</li>
-<li>Chrome 4+</li>
-<li>Safari 3.2+</li>
-<li>Opera 9+</li>
-<li>IE9+</li>
-</ul>
-<h3 id='compatibility/mobile' id="mobile">Mobile</h3 id='compatibility/mobile'>
-<ul>
-<li>iOS Safari 3.2+</li>
-<li>Android Browser 3+</li>
-<li>Opera Mobile 10+</li>
-<li>Chrome for Android 18+</li>
-<li>Firefox for Android 15+</li>
-</ul>
-<p>Visit the <a href="http://svgjs.com/test">SVG.js test page</a> if you want to check compatibility with different browsers.</p>
-<p>Important: this library is still in beta, therefore the API might be subject to change in the course of development.</p>
-<h2 id='acknowledgements-thanks' id="acknowledgements-thanks">Acknowledgements &amp; Thanks</h2 id='acknowledgements-thanks'>
-
-  </div>
-</div>
-</body>
-</html>
\ No newline at end of file
diff --git a/docs/svgjs.css b/docs/svgjs.css
deleted file mode 100644 (file)
index b7d42ce..0000000
+++ /dev/null
@@ -1,523 +0,0 @@
-html,
-body,
-div,
-span,
-object,
-iframe,
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-p,
-blockquote,
-pre,
-a,
-abbr,
-acronym,
-address,
-code,
-del,
-dfn,
-em,
-img,
-q,
-dl,
-dt,
-dd,
-ol,
-ul,
-li,
-fieldset,
-form,
-label,
-legend,
-table,
-caption,
-tbody,
-tfoot,
-thead,
-tr,
-th,
-td {
-  margin: 0;
-  padding: 0;
-  border: 0;
-  font-weight: inherit;
-  font-style: inherit;
-  font-size: 100%;
-  font-family: inherit;
-  vertical-align: baseline;
-}
-table {
-  border-collapse: separate;
-  border-spacing: 0;
-}
-caption,
-th,
-td {
-  text-align: left;
-  font-weight: normal;
-}
-table,
-td,
-th {
-  vertical-align: middle;
-}
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
-  content: "";
-}
-blockquote,
-q {
-  quotes: "" "";
-}
-a img {
-  border: none;
-}
-body {
-  margin: 10px;
-}
-.tomorrow-comment,
-pre .comment,
-pre .title {
-  color: #8e908c;
-}
-.tomorrow-red,
-pre .variable,
-pre .attribute,
-pre .tag,
-pre .regexp,
-pre .ruby .constant,
-pre .xml .tag .title,
-pre .xml .pi,
-pre .xml .doctype,
-pre .html .doctype,
-pre .css .id,
-pre .css .class,
-pre .css .pseudo {
-  color: #c82829;
-}
-.tomorrow-orange,
-pre .number,
-pre .preprocessor,
-pre .built_in,
-pre .literal,
-pre .params,
-pre .constant {
-  color: #f5871f;
-}
-.tomorrow-yellow,
-pre .class,
-pre .ruby .class .title,
-pre .css .rules .attribute {
-  color: #eab700;
-}
-.tomorrow-green,
-pre .string,
-pre .value,
-pre .inheritance,
-pre .header,
-pre .ruby .symbol,
-pre .xml .cdata {
-  color: #718c00;
-}
-.tomorrow-aqua,
-pre .css .hexcolor {
-  color: #3e999f;
-}
-.tomorrow-blue,
-pre .function,
-pre .python .decorator,
-pre .python .title,
-pre .ruby .function .title,
-pre .ruby .title .keyword,
-pre .perl .sub,
-pre .javascript .title,
-pre .coffeescript .title {
-  color: #4271ae;
-}
-.tomorrow-purple,
-pre .keyword,
-pre .javascript .function {
-  color: #8959a8;
-}
-pre code {
-  display: block;
-  background: #fff;
-  color: #4d4d4c;
-  font-family: Menlo, Monaco, Consolas, monospace;
-  font-size: 12px;
-  line-height: 1.5;
-  border: 1px solid #ccc;
-  padding: 10px;
-}
-html {
-  height: 100%;
-}
-body {
-  padding: 0;
-  margin: 0;
-  font: 16px/1.4em Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
-  font-size-adjust: none;
-  font-style: normal;
-  font-variant: normal;
-  font-weight: normal;
-}
-h1,
-h2,
-h3,
-h4,
-#header,
-#nav,
-#loader {
-  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-a {
-  color: #369;
-}
-#header {
-  border-bottom: 1px solid #ccc;
-}
-#header #logo {
-  color: #333;
-  font-size: 18px;
-  font-weight: bold;
-  padding: 10px 15px;
-  line-height: 1.2em;
-  text-decoration: none;
-}
-#nav {
-  position: fixed;
-  top: 0;
-  left: 0;
-  width: 250px;
-  height: 100%;
-  background: #f9f9f9;
-  background: rgba(0,0,0,0.10);
-  border-right: 1px solid rgba(0,0,0,0.20);
-  -webkit-box-shadow: rgba(0,0,0,0.10) -1px 0 3px 0 inset;
-  -moz-box-shadow: rgba(0,0,0,0.10) -1px 0 3px 0 inset;
-  box-shadow: rgba(0,0,0,0.10) -1px 0 3px 0 inset;
-  text-shadow: rgba(255,255,255,0.70) 0 1px 0;
-  overflow-x: hidden;
-  overflow-y: auto;
-}
-#nav a {
-  display: block;
-  font-weight: bold;
-  text-decoration: none;
-}
-#nav #sections {
-  margin-bottom: 5px;
-  border-bottom: 1px solid #ccc;
-  background: #f1f1f1;
-  -webkit-box-shadow: rgba(0,0,0,0.15) 0 0 5px;
-  -moz-box-shadow: rgba(0,0,0,0.15) 0 0 5px;
-  box-shadow: rgba(0,0,0,0.15) 0 0 5px;
-}
-#nav #sections > li {
-  border-bottom: 1px solid rgba(0,0,0,0.05);
-  border-top: 1px solid rgba(255,255,255,0.50);
-}
-#nav #sections > li > a {
-  padding: 5px 15px;
-  color: #555;
-  font-size: 14px;
-}
-#nav #sections > li > a:hover {
-  background: #ddd;
-  background: rgba(0,0,0,0.05);
-}
-#nav #sections > li:last-child {
-  border-bottom: 1px solid rgba(255,255,255,0.50);
-}
-#nav #sections ul {
-  margin-bottom: 6px;
-}
-#nav #sections ul li a {
-  padding: 1px 25px;
-  font-size: 13px;
-}
-#nav #sections ul li a:hover {
-  background: #ddd;
-  background: rgba(0,0,0,0.05);
-}
-#nav .extra {
-  padding: 5px 15px;
-  min-height: 1.4em;
-}
-#nav .extra a {
-  color: #555;
-  font-size: 14px;
-}
-#nav #travis img {
-  margin-top: 10px;
-  display: block;
-}
-#nav > *:last-child {
-  margin-bottom: 20px;
-}
-#github-ribbon {
-  position: absolute;
-  top: 0;
-  right: 0;
-}
-#github-ribbon img {
-  border: 0;
-}
-#refresh {
-  z-index: 3;
-  position: fixed;
-  display: block;
-  top: 0;
-  left: 50%;
-  width: 320px;
-  margin-left: -160px;
-  font-family: "Helvetica Neue", "Helvetica", arial, sans-serif;
-  line-height: 1.4em;
-  padding: 10px;
-  color: #fff;
-  text-shadow: rgba(0,0,0,0.30) 0 1px 1px;
-  font-weight: bold;
-  font-size: 13px;
-  text-decoration: none;
-  text-align: center;
-  background: #666;
-  -moz-border-radius-bottomleft: 5px;
-  -webkit-border-bottom-left-radius: 5px;
-  border-bottom-left-radius: 5px;
-  -moz-border-radius-bottomright: 5px;
-  -webkit-border-bottom-right-radius: 5px;
-  border-bottom-right-radius: 5px;
-}
-#content {
-  margin: 0 40px 0 290px;
-  padding: 30px 0 20px;
-  min-height: 100px;
-  max-width: 688px;
-/* From Tripoli  */
-}
-#content #loader {
-  color: #888;
-  width: 300px;
-  height: 24px;
-  line-height: 24px;
-  position: absolute;
-  top: 30px;
-  left: 30px;
-  background: url("data:image/gif;base64,R0lGODlhGAAYAPYAAP///5mZmfn5+dvb27i4uKmpqaCgoNra2v39/c/Pz6CgoJmZmfT09K+vr66urvb29qWlpaSkpPPz8/v7+87Ozvj4+NXV1dTU1Li4uKysrJubm52dnaqqqu7u7uPj46Ojo8LCwvb29ra2tqenp7q6utzc3JycnNfX1/Ly8uzs7J6ensbGxs3NzeDg4MvLy9LS0r+/v/r6+qysrOrq6t7e3tnZ2cTExLS0tLOzs6ioqLGxsefn57W1tcvLy7y8vMHBwd7e3qKiovHx8cfHx+Hh4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAFAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAGAAYAAAHmoAAgoOEhYaHgxUWBA4aCxwkJwKIhBMJBguZmpkqLBOUDw2bo5kKEogMEKSkLYgIoqubK5QJsZsNCIgCCraZBiiUA72ZJZQABMMgxgAFvRyfxpixGx3LANKxHtbNth8hy8i9IssHwwsXxgLYsSYpxrXDz5QIDubKlAwR5q2UErC2poxNoLBukwoX0IxVuIAhQ6YRBC5MskaxUCAAIfkEAAUAAQAsAAAAABgAGAAAB6GAAIKDhIWGh4MVFgQOGhsOGAcxiIQTCQYLmZqZGwkIlA8Nm6OaMgyHDBCkqwsjEoUIoqykNxWFCbOkNoYCCrmaJjWHA7+ZHzOIBMUND5QFvzATlACYsy/TgtWsIpPTz7kyr5TKv8eUB8ULGzSIAtq/CYi46Qswn7AO9As4toUMEfRcHZIgC9wpRBMovNvU6d60ChcwZFigwYGIAwKwaUQUCAAh+QQABQACACwAAAAAGAAYAAAHooAAgoOEhYaHgxUWBA4aCzkkJwKIhBMJBguZmpkqLAiUDw2bo5oyEocMEKSrCxCnhAiirKs3hQmzsy+DAgq4pBogKIMDvpvAwoQExQvHhwW+zYiYrNGU06wNHpSCz746O5TKyzwzhwfLmgQphQLX6D4dhLfomgmwDvQLOoYMEegRyApJkIWLQ0BDEyi426Six4RtgipcwJAhUwQCFypA3IgoEAAh+QQABQADACwAAAAAGAAYAAAHrYAAgoOEhYaHgxUWBA4aCxwkJzGIhBMJBguZmpkGLAiUDw2bo5oZEocMEKSrCxCnhAiirKsZn4MJs7MJgwIKuawqFYIDv7MnggTFozlDLZMABcpBPjUMhpisJiIJKZQA2KwfP0DPh9HFGjwJQobJypoQK0S2B++kF4IC4PbBt/aaPWA5+CdjQiEGEd5FQHFIgqxcHF4dmkBh3yYVLmx5q3ABQ4ZMBUhYEOCtpLdAACH5BAAFAAQALAAAAAAYABgAAAeegACCg4SFhoeDFRYEDhoaDgQWFYiEEwkGC5mamQYJE5QPDZujmg0PhwwQpKsLEAyFCKKsqw0IhAmzswmDAgq5rAoCggO/sxaCBMWsBIIFyqsRgpjPoybS1KMqzdibBcjcmswAB+CZxwAC09gGwoK43LuDCA7YDp+EDBHPEa+GErK5GkigNIGCulEGKNyjBKDCBQwZMmXAcGESw4uUAgEAIfkEAAUABQAsAAAAABgAGAAAB62AAIKDhIWGh4MVFgQOGgscJCcxiIQTCQYLmZqZBiwIlA8Nm6OaGRKHDBCkqwsQp4QIoqyrGZ+DCbOzCYMCCrmsKhWCA7+zJ4IExaM5Qy2TAAXKQT41DIaYrCYiCSmUANisHz9Az4fRxRo8CUKGycqaECtEtgfvpBeCAuD2wbf2mj1gOfgnY0IhBhHeRUBxSIKsXBxeHZpAYd8mFS5seatwAUOGTAVIWBDgraS3QAAh+QQABQAGACwAAAAAGAAYAAAHooAAgoOEhYaHgxUWBA4aCzkkJwKIhBMJBguZmpkqLAiUDw2bo5oyEocMEKSrCxCnhAiirKs3hQmzsy+DAgq4pBogKIMDvpvAwoQExQvHhwW+zYiYrNGU06wNHpSCz746O5TKyzwzhwfLmgQphQLX6D4dhLfomgmwDvQLOoYMEegRyApJkIWLQ0BDEyi426Six4RtgipcwJAhUwQCFypA3IgoEAAh+QQABQAHACwAAAAAGAAYAAAHoYAAgoOEhYaHgxUWBA4aGw4YBzGIhBMJBguZmpkbCQiUDw2bo5oyDIcMEKSrCyMShQiirKQ3FYUJs6Q2hgIKuZomNYcDv5kfM4gExQ0PlAW/MBOUAJizL9OC1awik9PPuTKvlMq/x5QHxQsbNIgC2r8JiLjpCzCfsA70Czi2hQwR9FwdkiAL3ClEEyi829Tp3rQKFzBkWKDBgYgDArBpRBQIADsAAAAAAAAAAAA=") no-repeat center left;
-  padding-left: 32px;
-  font-size: 18px;
-}
-#content p {
-  padding: 0 0 0.8125em 0;
-  color: #111;
-  font-weight: 300;
-  zoom: 1;
-}
-#content p:before,
-#content p:after {
-  content: "";
-  display: table;
-}
-#content p:after {
-  clear: both;
-}
-#content p img {
-  float: left;
-  margin: 0.5em 0.8125em 0.8125em 0;
-  padding: 0;
-}
-#content img {
-  max-width: 100%;
-}
-#content h1,
-#content h2,
-#content h3,
-#content h4,
-#content h5,
-#content h6 {
-  font-weight: normal;
-  color: #333;
-  line-height: 1.2em;
-}
-#content h1 {
-  font-size: 2.125em;
-  margin-bottom: 0.765em;
-}
-#content h2 {
-  font-size: 1.7em;
-  margin: 0.855em 0;
-}
-#content h3 {
-  font-size: 1.3em;
-  margin: 0.956em 0;
-}
-#content h4 {
-  font-size: 1.1em;
-  margin: 1.161em 0;
-}
-#content h5,
-#content h6 {
-  font-size: 1em;
-  font-weight: bold;
-  margin: 1.238em 0;
-}
-#content ul {
-  list-style-position: outside;
-}
-#content li ul,
-#content li ol {
-  margin: 0 1.625em;
-}
-#content ul,
-#content ol {
-  margin: 0 0 1.625em 1em;
-}
-#content dl {
-  margin: 0 0 1.625em 0;
-}
-#content dl dt {
-  font-weight: bold;
-}
-#content dl dd {
-  margin-left: 1.625em;
-}
-#content a {
-  text-decoration: none;
-}
-#content a:hover {
-  text-decoration: underline;
-}
-#content table {
-  margin-bottom: 1.625em;
-  border-collapse: collapse;
-}
-#content th {
-  font-weight: bold;
-}
-#content tr,
-#content th,
-#content td {
-  margin: 0;
-  padding: 0 1.625em 0 1em;
-  height: 26px;
-}
-#content tfoot {
-  font-style: italic;
-}
-#content caption {
-  text-align: center;
-  font-family: Georgia, serif;
-}
-#content abbr,
-#content acronym {
-  border-bottom: 1px dotted #000;
-}
-#content address {
-  margin-top: 1.625em;
-  font-style: italic;
-}
-#content del {
-  color: #000;
-}
-#content blockquote {
-  padding: 1em 1em 1.625em 1em;
-  font-family: georgia, serif;
-  font-style: italic;
-}
-#content blockquote:before {
-  content: "\201C";
-  font-size: 3em;
-  margin-left: -0.625em;
-  font-family: georgia, serif;
-  color: #aaa;
-  line-height: 0;
-}
-#content blockquote > p {
-  padding: 0;
-  margin: 0;
-}
-#content strong {
-  font-weight: bold;
-}
-#content em,
-#content dfn {
-  font-style: italic;
-}
-#content dfn {
-  font-weight: bold;
-}
-#content pre,
-#content code {
-  margin: 0 0 1.625em;
-  white-space: pre;
-}
-#content pre,
-#content code,
-#content tt {
-  font-size: 0.9em;
-  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
-  line-height: 1.5;
-}
-#content code {
-  background: #f8f8ff;
-  padding: 1px 2px;
-  border: 1px solid #ddd;
-}
-#content pre code {
-  padding: 10px 12px;
-  word-wrap: normal;
-}
-#content tt {
-  display: block;
-  margin: 1.625em 0;
-}
-#content hr {
-  margin-bottom: 1.625em;
-}
-#content table {
-  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-  width: 100%;
-}
-#content th,
-#content td {
-  padding: 5px 10px;
-  border: 1px solid #ccc;
-}
-#content th {
-  background: #eee;
-  padding: 7px 10px;
-}
-#content td {
-  font-size: 0.9em;
-  border-color: #ddd;
-}
-#content tbody tr:nth-child(2n) {
-  background: #f5f5f5;
-}
-@media only screen and (max-width : 480px) {
-  #nav {
-    position: static;
-    width: 100%;
-    height: auto;
-    -webkit-box-shadow: none;
-    -moz-box-shadow: none;
-    box-shadow: none;
-    border-bottom: 1px solid #aaa;
-  }
-  #content {
-    margin: 0;
-    padding: 30px;
-    position: relative;
-  }
-}
-@media only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution : 1.5dppx) {
-  #github-ribbon img {
-    width: 100px;
-  }
-}
\ No newline at end of file
index 85a1d71c08ce49aa608233dc63b4769ee77f3356..a406461f98a2407806f9d115609a276ca29e5348 100644 (file)
@@ -27,7 +27,6 @@ var headerShort = '/*! <%= pkg.name %> v<%= pkg.version %> <%= pkg.license %>*/'
 // all files in the right order (currently we don't use any dependency management system)\r
 var parts = [\r
   'src/svg.js'\r
-, 'src/adopter.js'\r
 , 'src/regex.js'\r
 , 'src/utilities.js'\r
 , 'src/default.js'\r
index d98aa45c366cb54072b9e280d35602edc119042a..8864afa6701a9641770b980cdcce341373e15c12 100755 (executable)
@@ -151,40 +151,61 @@ describe('Element', function() {
   })
   
   describe('transform()', function() {
+    var rect
+    
+    beforeEach(function() {
+      rect = draw.rect(100,100)
+    })
+    
     it('gets the current transformations', function() {
-      var rect = draw.rect(100,100)
       expect(rect.transform()).toEqual(new SVG.Matrix(rect).extract())
     })
     it('sets the translation of and element', function() {
-      var rect = draw.rect(100,100).transform({ x: 10, y: 11 })
+      rect.transform({ x: 10, y: 11 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(1,0,0,1,10,11)')
     })
     it('sets the scaleX and scaleY of and element', function() {
-      var rect = draw.rect(100,100).transform({ scaleX: 0.5, scaleY: 2 })
+      rect.transform({ scaleX: 0.5, scaleY: 2 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(0.5,0,0,2,0,0)')
     })
     it('sets the skewX of and element', function() {
-      var rect = draw.rect(100,100).transform({ skewX: 10 })
+      rect.transform({ skewX: 10 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(1,0,0.17632698070846498,1,0,0)')
     })
     it('sets the skewY of and element', function() {
-      var rect = draw.rect(100,100).transform({ skewY: -10 })
+      rect.transform({ skewY: -10 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(1,-0.17632698070846498,0,1,0,0)')
     })
     it('rotates the element around its centre if no rotation point is given', function() {
-      var rect = draw.rect(100,100).center(150,150).transform({ rotation: 45 })
+      rect.center(150,150).transform({ rotation: 45 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(0.7071067811865475,0.7071067811865475,-0.7071067811865475,0.7071067811865475,150,-62.13203435596424)')
       expect(rect.transform('rotation')).toBe(45)
     })
     it('rotates the element around the given rotation point', function() {
-      var rect = draw.rect(100,100).transform({ rotation: 55, cx: 80, cy:2 })
+      rect.transform({ rotation: 55, cx: 80, cy:2 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(0.573576436351046,0.8191520442889917,-0.8191520442889917,0.573576436351046,35.7521891804943,-64.67931641582143)')
     })
     it('transforms element using a matrix', function() {
-      var rect = draw.rect(100,100).transform({ a: 0.5, c: 0.5 })
+      rect.transform({ a: 0.5, c: 0.5 })
       expect(rect.node.getAttribute('transform')).toBe('matrix(0.5,0,0.5,1,0,0)')
     })
   })
+
+  describe('ctm()', function() {
+    var rect
+    
+    beforeEach(function() {
+      rect = draw.rect(100,100)
+    })
+    
+    it('gets the current transform matrix of the element', function() {
+      rect.translate(10, 20)
+      expect(rect.ctm().toString()).toBe('matrix(1,0,0,1,10,20)')
+    })
+    it('returns an instance of SVG.Matrix', function() {
+      expect(rect.ctm() instanceof SVG.Matrix).toBeTruthy()
+    })
+  })
   
   describe('data()', function() {
     it('sets a data attribute and convert value to json', function() {
index 5c2286e94e9e526b83d92ce4563fe3c4054345ef..feed9b4c61880a7005039cbce714251c0330021d 100644 (file)
@@ -37,25 +37,55 @@ describe('Matrix', function() {
                                        expect(extract.scaleX).toBe(1)
                                        expect(extract.scaleY).toBe(1)
                                })
-                               it('parses rotaton value', function() {
+                               it('parses rotatoin value', function() {
                                        expect(extract.rotation).toBe(0)
                                })
                        })
                })
 
                describe('with an element given', function() {
-                       
+                       var rect
+
                        beforeEach(function() {
-                               matrix = new SVG.Matrix(draw.rect(100, 100).skew(10, 20).translate(40, 50).scale(3, 2))
+                               rect = draw.rect(100, 100)
+                               matrix = new SVG.Matrix(rect)
                        })
 
                        it('parses the current transform matrix form an element', function() {
-                               expect(matrix.a).toBe(3.192533254623413)
-                               expect(matrix.b).toBe(1.091910719871521)
-                               expect(matrix.c).toBe(0.35265403985977173)
-                               expect(matrix.d).toBe(2)
-                               expect(matrix.e).toBe(51.383460998535156)
-                               expect(matrix.f).toBe(64.55880737304688)
+                               rect.rotate(-10).translate(40, 50).scale(2)
+                               expect(matrix.a).toBe(1.9696155786514282)
+                               expect(matrix.b).toBe(-0.3472963869571686)
+                               expect(matrix.c).toBe(0.3472963869571686)
+                               expect(matrix.d).toBe(1.9696155786514282)
+                               expect(matrix.e).toBe(-8.373950958251953)
+                               expect(matrix.f).toBe(7.758301258087158)
+                       })
+
+                       describe('extract()', function() {
+
+                               it('parses translation values', function() {
+                                       var extract = new SVG.Matrix(draw.rect(100, 100).translate(40, 50)).extract()
+                                       expect(extract.x).toBe(40)
+                                       expect(extract.y).toBe(50)
+                               })
+                               it('parses skewX value', function() {
+                                       var extract = new SVG.Matrix(draw.rect(100, 100).skew(10, 0)).extract()
+                                       expect(approximately(extract.skewX, 0.01)).toBe(10)
+                               })
+                               it('parses skewX value', function() {
+                                       var extract = new SVG.Matrix(draw.rect(100, 100).skew(0, 20)).extract()
+                                       expect(approximately(extract.skewY, 0.01)).toBe(20)
+                               })
+                               it('parses scale values', function() {
+                                       var extract = new SVG.Matrix(draw.rect(100, 100).scale(2, 3)).extract()
+                                       expect(extract.scaleX).toBe(2)
+                                       expect(extract.scaleY).toBe(3)
+                               })
+                               it('parses rotatoin value', function() {
+                                       var extract = new SVG.Matrix(draw.rect(100, 100).rotate(-100)).extract()
+                                       expect(approximately(extract.rotation, 0.01)).toBe(-100)
+                               })
+
                        })
                        
                })
index 4b36175a090d56d0dab963334679751fa20bedc5..f017059b6726a5e2c1c71a4e24126c2b121977dd 100644 (file)
@@ -22,17 +22,30 @@ describe('Regex', function() {
   })
 
   describe('testers', function() {
-    describe('isEvent', function() {
-      it('is true with a namespaced and lowercase name', function() {
-        expect(SVG.regex.isEvent.test('my:event')).toBeTruthy()
+
+    describe('isHex', function() {
+      it('is true with a three based hex', function() {
+        expect(SVG.regex.isHex.test('#f09')).toBeTruthy()
+      })
+      it('is true with a six based hex', function() {
+        expect(SVG.regex.isHex.test('#fe0198')).toBeTruthy()
+      })
+      it('is false with a faulty hex', function() {
+        expect(SVG.regex.isHex.test('###')).toBeFalsy()
+        expect(SVG.regex.isHex.test('#0')).toBeFalsy()
+        expect(SVG.regex.isHex.test('f06')).toBeFalsy()
       })
-      it('is true with a namespaced and camelCase name', function() {
-        expect(SVG.regex.isEvent.test('mt:fabulousEvent')).toBeTruthy()
+    })
+
+    describe('isRgb', function() {
+      it('is true with an rgb value', function() {
+        expect(SVG.regex.isRgb.test('rgb(255,66,100)')).toBeTruthy()
       })
-      it('is false without a namespace', function() {
-        expect(SVG.regex.isEvent.test('idontlinkenamespaces')).toBeFalsy()
+      it('is false with a non-rgb value', function() {
+        expect(SVG.regex.isRgb.test('hsb(255, 100, 100)')).toBeFalsy()
       })
     })
+
   })
 
 })
\ No newline at end of file
diff --git a/src/adopter.js b/src/adopter.js
deleted file mode 100644 (file)
index 5aa162c..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// Adopt existing svg elements
-SVG.adopt = function(node) {
-  // Make sure a node isn't already adopted
-  if (node.instance) return node.instance
-
-  // Initialize variables
-  var element
-
-  // Adopt with element-specific settings
-  if (node.nodeName == 'svg')
-    element = node.parentNode instanceof SVGElement ? new SVG.Nested : new SVG.Doc
-  else if (node.nodeName == 'lineairGradient')
-    element = new SVG.Gradient('lineair')
-  else if (node.nodeName == 'radialGradient')
-    element = new SVG.Gradient('radial')
-  else if (SVG[capitalize(node.nodeName)])
-    element = new SVG[capitalize(node.nodeName)]
-  else
-    element = new SVG.Element(node)
-
-  // Ensure references
-  element.type  = node.nodeName
-  element.node  = node
-  node.instance = element
-
-  // SVG.Class specific preparations
-  if (element instanceof SVG.Doc)
-    element.namespace().defs()
-
-  return element
-}
\ No newline at end of file
index 15842b5296f1d0f5c03ce998c2bd9e6cb3317706..bf417b730468dc6b12df0333767ad3fe9286d733 100644 (file)
@@ -28,12 +28,10 @@ function compToHex(comp) {
 
 // Calculate proportional width and height values when necessary
 function proportionalSize(box, width, height) {
-       if (width == null || height == null) {
-               if (height == null)
-                       height = box.height / box.width * width
-               else if (width == null)
-                       width = box.width / box.height * height
-       }
+       if (height == null)
+               height = box.height / box.width * width
+       else if (width == null)
+               width = box.width / box.height * height
        
        return {
                width:  width
index 92ff796b705dcc443756df0adfbfbd4eccaf29e9..22915b9fc4b98d36ccfadc60a8151b5fca6e8879 100755 (executable)
 // Module for unit convertions
-SVG.Number = function(value) {
+SVG.Number = SVG.invent({
+  // Initialize
+  create: function(value) {
+    // Initialize defaults
+    this.value = 0
+    this.unit = ''
 
-  /* initialize defaults */
-  this.value = 0
-  this.unit = ''
+    // Parse value
+    if (typeof value === 'number') {
+      // Ensure a valid numeric value
+      this.value = isNaN(value) ? 0 : !isFinite(value) ? (value < 0 ? -3.4e+38 : +3.4e+38) : value
 
-  /* parse value */
-  if (typeof value === 'number') {
-    /* ensure a valid numeric value */
-    this.value = isNaN(value) ? 0 : !isFinite(value) ? (value < 0 ? -3.4e+38 : +3.4e+38) : value
+    } else if (typeof value === 'string') {
+      var match = value.match(SVG.regex.unit)
 
-  } else if (typeof value === 'string') {
-    var match = value.match(SVG.regex.unit)
+      if (match) {
+        // Make value numeric
+        this.value = parseFloat(match[1])
+      
+        // Normalize
+        if (match[2] == '%')
+          this.value /= 100
+        else if (match[2] == 's')
+          this.value *= 1000
+      
+        // Store unit
+        this.unit = match[2]
+      }
 
-    if (match) {
-      /* make value numeric */
-      this.value = parseFloat(match[1])
-    
-      /* normalize percent value */
-      if (match[2] == '%')
-        this.value /= 100
-      else if (match[2] == 's')
-        this.value *= 1000
-    
-      /* store unit */
-      this.unit = match[2]
+    } else {
+      if (value instanceof SVG.Number) {
+        this.value = value.value
+        this.unit  = value.unit
+      }
     }
 
-  } else {
-    if (value instanceof SVG.Number) {
-      this.value = value.value
-      this.unit  = value.unit
-    }
   }
+  // Add methods
+, extend: {
+    // Stringalize
+    toString: function() {
+      return (
+        this.unit == '%' ?
+          ~~(this.value * 1e8) / 1e6:
+        this.unit == 's' ?
+          this.value / 1e3 :
+          this.value
+      ) + this.unit
+    }
+  , // Convert to primitive
+    valueOf: function() {
+      return this.value
+    }
+    // Add number
+  , plus: function(number) {
+      this.value = this + new SVG.Number(number)
 
-}
-
-SVG.extend(SVG.Number, {
-  // Stringalize
-  toString: function() {
-    return (
-      this.unit == '%' ?
-        ~~(this.value * 1e8) / 1e6:
-      this.unit == 's' ?
-        this.value / 1e3 :
-        this.value
-    ) + this.unit
-  }
-, // Convert to primitive
-  valueOf: function() {
-    return this.value
-  }
-  // Add number
-, plus: function(number) {
-    this.value = this + new SVG.Number(number)
+      return this
+    }
+    // Subtract number
+  , minus: function(number) {
+      return this.plus(-new SVG.Number(number))
+    }
+    // Multiply number
+  , times: function(number) {
+      this.value = this * new SVG.Number(number)
 
-    return this
-  }
-  // Subtract number
-, minus: function(number) {
-    return this.plus(-new SVG.Number(number))
-  }
-  // Multiply number
-, times: function(number) {
-    this.value = this * new SVG.Number(number)
+      return this
+    }
+    // Divide number
+  , divide: function(number) {
+      this.value = this / new SVG.Number(number)
 
-    return this
-  }
-  // Divide number
-, divide: function(number) {
-    this.value = this / new SVG.Number(number)
+      return this
+    }
+    // Convert to different unit
+  , to: function(unit) {
+      if (typeof unit === 'string')
+        this.unit = unit
 
-    return this
-  }
-  // Convert to different unit
-, to: function(unit) {
-    if (typeof unit === 'string')
-      this.unit = unit
+      return this
+    }
+    // Make number morphable
+  , morph: function(number) {
+      this.destination = new SVG.Number(number)
 
-    return this
-  }
-  // Make number morphable
-, morph: function(number) {
-    this.destination = new SVG.Number(number)
+      return this
+    }
+    // Get morphed number at given position
+  , at: function(pos) {
+      // Make sure a destination is defined
+      if (!this.destination) return this
 
-    return this
-  }
-  // Get morphed number at given position
-, at: function(pos) {
-    /* make sure a destination is defined */
-    if (!this.destination) return this
+      // Generate new morphed number
+      return new SVG.Number(this.destination)
+          .minus(this)
+          .times(pos)
+          .plus(this)
+    }
 
-    /* generate new morphed number */
-    return new SVG.Number(this.destination)
-        .minus(this)
-        .times(pos)
-        .plus(this)
   }
-
 })
\ No newline at end of file
index 8e974a9c9fb328bfbd85bf7d404fea13e014a138..eeade9edce257cb9829bf23e7a6e4331c22b6e3a 100755 (executable)
@@ -1,39 +1,36 @@
 // Storage for regular expressions
 SVG.regex = {
-  /* parse unit value */
+  // Parse unit value
   unit:             /^(-?[\d\.]+)([a-z%]{0,2})$/
   
-  /* parse hex value */
+  // Parse hex value
 , hex:              /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i
   
-  /* parse rgb value */
+  // Parse rgb value
 , rgb:              /rgb\((\d+),(\d+),(\d+)\)/
   
-  /* parse reference id */
+  // Parse reference id
 , reference:        /#([a-z0-9\-_]+)/i
 
-  /* test hex value */
+  // Test hex value
 , isHex:            /^#[a-f0-9]{3,6}$/i
   
-  /* test rgb value */
+  // Test rgb value
 , isRgb:            /^rgb\(/
   
-  /* test css declaration */
+  // Test css declaration
 , isCss:            /[^:]+:[^;]+;?/
   
-  /* test for blank string */
+  // Test for blank string
 , isBlank:          /^(\s+)?$/
   
-  /* test for numeric string */
+  // Test for numeric string
 , isNumber:         /^-?[\d\.]+$/
 
-  /* test for percent value */
+  // Test for percent value
 , isPercent:        /^-?[\d\.]+%$/
 
-  /* test for image url */
-, isImage:          /\.(jpg|jpeg|png|gif)(\?[^=]+.*)?/i
-  
-  /* test for namespaced event */
-, isEvent:          /^[\w]+:[\w]+$/
+  // Test for image url
+, isImage:          /\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i
 
 }
\ No newline at end of file
index d91e2f87ddae20b1de7df91609df21d34b23bd43..0494300ab6858dbf1e88f4fcb3cba554f4180237 100755 (executable)
@@ -1,4 +1,3 @@
-
 // The main wrapping element
 var SVG = this.SVG = function(element) {
   if (SVG.supported) {
@@ -16,6 +15,15 @@ SVG.ns    = 'http://www.w3.org/2000/svg'
 SVG.xmlns = 'http://www.w3.org/2000/xmlns/'
 SVG.xlink = 'http://www.w3.org/1999/xlink'
 
+// Svg support test
+SVG.supported = (function() {
+  return !! document.createElementNS &&
+         !! document.createElementNS(SVG.ns,'svg').createSVGRect
+})()
+
+// Don't bother to continue if SVG is not supported 
+if (!SVG.supported) return false
+
 // Element id sequence
 SVG.did  = 1000
 
@@ -26,10 +34,10 @@ SVG.eid = function(name) {
 
 // Method for element creation
 SVG.create = function(name) {
-  /* create element */
+  // Create element
   var element = document.createElementNS(this.ns, name)
   
-  /* apply unique id */
+  // Apply unique id
   element.setAttribute('id', this.eid(name))
   
   return element
@@ -39,10 +47,10 @@ SVG.create = function(name) {
 SVG.extend = function() {
   var modules, methods, key, i
   
-  /* get list of modules */
+  // Get list of modules
   modules = [].slice.call(arguments)
   
-  /* get object with extensions */
+  // Get object with extensions
   methods = modules.pop()
   
   for (i = modules.length - 1; i >= 0; i--)
@@ -50,58 +58,82 @@ SVG.extend = function() {
       for (key in methods)
         modules[i].prototype[key] = methods[key]
 
-  /* make sure SVG.Set inherits any newly added methods */
+  // Make sure SVG.Set inherits any newly added methods
   if (SVG.Set && SVG.Set.inherit)
     SVG.Set.inherit()
 }
 
 // Invent new element
 SVG.invent = function(config) {
-  /* create element initializer */
+  // Create element initializer
   var initializer = typeof config.create == 'function' ?
     config.create :
     function() {
       this.constructor.call(this, SVG.create(config.create))
     }
 
-  /* inherit prototype */
+  // Inherit prototype
   if (config.inherit)
     initializer.prototype = new config.inherit
 
-  /* extend with methods */
+  // Extend with methods
   if (config.extend)
     SVG.extend(initializer, config.extend)
 
-  /* attach construct method to parent */
+  // Attach construct method to parent
   if (config.construct)
     SVG.extend(config.parent || SVG.Container, config.construct)
 
   return initializer
 }
 
+// Adopt existing svg elements
+SVG.adopt = function(node) {
+  // Make sure a node isn't already adopted
+  if (node.instance) return node.instance
+
+  // Initialize variables
+  var element
+
+  // Adopt with element-specific settings
+  if (node.nodeName == 'svg')
+    element = node.parentNode instanceof SVGElement ? new SVG.Nested : new SVG.Doc
+  else if (node.nodeName == 'lineairGradient')
+    element = new SVG.Gradient('lineair')
+  else if (node.nodeName == 'radialGradient')
+    element = new SVG.Gradient('radial')
+  else if (SVG[capitalize(node.nodeName)])
+    element = new SVG[capitalize(node.nodeName)]
+  else
+    element = new SVG.Element(node)
+
+  // Ensure references
+  element.type  = node.nodeName
+  element.node  = node
+  node.instance = element
+
+  // SVG.Class specific preparations
+  if (element instanceof SVG.Doc)
+    element.namespace().defs()
+
+  return element
+}
+
 // Initialize parsing element
 SVG.prepare = function(element) {
-  /* select document body and create invisible svg element */
+  // Select document body and create invisible svg element
   var body = document.getElementsByTagName('body')[0]
     , draw = (body ? new SVG.Doc(body) : element.nested()).size(2, 0)
     , path = SVG.create('path')
 
-  /* insert parsers */
+  // Insert parsers
   draw.node.appendChild(path)
 
-  /* create parser object */
+  // Create parser object
   SVG.parser = {
     body: body || element.parent()
   , draw: draw.style('opacity:0;position:fixed;left:100%;top:100%;overflow:hidden')
   , poly: draw.polyline().node
   , path: path
   }
-}
-
-// svg support test
-SVG.supported = (function() {
-  return !! document.createElementNS &&
-         !! document.createElementNS(SVG.ns,'svg').createSVGRect
-})()
-
-if (!SVG.supported) return false
+}
\ No newline at end of file
index 843e3b66acabd608f8f077f34591f13af4faa222..d1aeda42240a177f8d00069f82de30cf82d2de11 100755 (executable)
@@ -1,4 +1,3 @@
-
 SVG.Text = SVG.invent({
   // Initialize node
   create: function() {
index 2690468cb7f98ea63cb3cb10ff79c66033309573..ddad76c1327444520db55044ebe01bd7be19af24 100755 (executable)
@@ -9,10 +9,10 @@ SVG.Use = SVG.invent({
 , extend: {
     // Use element as a reference
     element: function(element) {
-      /* store target element */
+      // Store target element
       this.target = element
 
-      /* set lined element */
+      // Set lined element
       return this.attr('href', '#' + element, SVG.xlink)
     }
   }