summaryrefslogtreecommitdiffstats
path: root/src/path.js
blob: b328d927e2b64f0cf020dd9aacb5afa47fc246e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SVG.Path = function(unbiased) {
  this.constructor.call(this, SVG.create('path'))
  
  this.unbiased = unbiased
}

// Inherit from SVG.Shape
SVG.Path.prototype = new SVG.Shape

SVG.extend(SVG.Path, {
  // Private: Native plot
  _plot: function(data) {
    return this.attr('d', data || 'M0,0')
  }
  
})