aboutsummaryrefslogtreecommitdiffstats
path: root/src/path.js
blob: e62f8d15ebfb6027fc77b4de0bcbf88d6c2aa6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SVG.Path = function() {
  this.constructor.call(this, SVG.create('path'))
}

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

SVG.extend(SVG.Path, {
  
  /* move using transform */
  move: function(x, y) {
    this.transform({
      x: x,
      y: y
    })
  },
  
  /* set path data */
  plot: function(data) {
    return this.attr('d', data || 'M0,0')
  }
  
});