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

// Inherit from SVG.Container
SVG.G.prototype = new SVG.Container

SVG.extend(SVG.G, {
  // Move over x-axis
  x: function(x) {
    return x == null ? this.trans.x : this.transform('x', x)
  }
  // Move over y-axis
, y: function(y) {
    return y == null ? this.trans.y : this.transform('y', y)
  }
  // Get defs
, defs: function() {
    return this.doc().defs()
  }
  
})