aboutsummaryrefslogtreecommitdiffstats
path: root/src/ellipse.js
blob: 598c250f732ba5d3c45b7c6291c47552275556ad (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
SVG.Ellipse = function() {
  this.constructor.call(this, SVG.create('ellipse'))
}

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

//
SVG.extend(SVG.Ellipse, {
  // Move over x-axis
  x: function(x) {
    return x == null ? this.cx() - this.attr('rx') : this.cx(x + this.attr('rx'))
  }
  // Move over y-axis
, y: function(y) {
    return y == null ? this.cy() - this.attr('ry') : this.cy(y + this.attr('ry'))
  }
  // Move by center over x-axis
, cx: function(x) {
    return x == null ? this.attr('cx') : this.attr('cx', x / this.trans.scaleX)
  }
  // Move by center over y-axis
, cy: function(y) {
    return y == null ? this.attr('cy') : this.attr('cy', y / this.trans.scaleY)
  }
  // Custom size function
, size: function(width, height) {
    return this.attr({
      rx: width / 2,
      ry: height / 2
    })
  }
  
})

// Usage:

//     draw.ellipse(200, 100)