diff options
author | wout <wout@impinc.co.uk> | 2013-03-24 21:03:14 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-03-24 21:03:14 +0100 |
commit | 264c100153fc45cedf94a8cc8a0174fae12e1fe8 (patch) | |
tree | 690060d1ebc545fda9ec962323141d4740a3f950 /src/path.js | |
parent | a0076d75bbac8f2c128f9b34e976bcb1ea3caa09 (diff) | |
download | svg.js-264c100153fc45cedf94a8cc8a0174fae12e1fe8.tar.gz svg.js-264c100153fc45cedf94a8cc8a0174fae12e1fe8.zip |
Added unbiased option to plotable elements
Diffstat (limited to 'src/path.js')
-rw-r--r-- | src/path.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/path.js b/src/path.js index ab5221a..b328d92 100644 --- a/src/path.js +++ b/src/path.js @@ -1,5 +1,7 @@ -SVG.Path = function() { +SVG.Path = function(unbiased) { this.constructor.call(this, SVG.create('path')) + + this.unbiased = unbiased } // Inherit from SVG.Shape |