summaryrefslogtreecommitdiffstats
path: root/src/Circle.js
blob: 8879eec234d233415b304fb08b63c7be6d958bc3 (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
40
41
import Shape from './Shape.js'
import { nodeOrNew, extend } from './tools.js'
import { x, y, cx, cy, width, height, size } from './circled.js'
import SVGNumber from './SVGNumber.js'
import { register } from './adopter.js'
import { registerMethods } from './methods.js'

export default class Circle extends Shape {
  constructor (node) {
    super(nodeOrNew('circle', node), Circle)
  }

  radius (r) {
    return this.attr('r', r)
  }

  // Radius x value
  rx (rx) {
    return this.attr('r', rx)
  }

  // Alias radius x value
  ry (ry) {
    return this.rx(ry)
  }
}

extend(Circle, { x, y, cx, cy, width, height, size })

registerMethods({
  Element: {
    // Create circle element
    circle (size) {
      return this.put(new Circle())
        .radius(new SVGNumber(size).divide(2))
        .move(0, 0)
    }
  }
})

register(Circle)