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

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

SVG.extend(SVG.G, {
  // Get defs
  defs: function() {
    return this.doc().defs()
  }
  
})

SVG.extend(SVG.G, {
  // Move using translate
  move: function(x, y) {
    return this.transform({
      x: x
    , y: y
    })
  }

})