(position)
| 101 | } |
| 102 | |
| 103 | move (position) { |
| 104 | const degrees = this.trimAngleToValue(this.positionToAngle(position)); |
| 105 | const radius = this.getPositionRadius(position); |
| 106 | if (this.props.onMove) this.props.onMove(degrees === 360 ? 0 : degrees, radius); |
| 107 | } |
| 108 | |
| 109 | render () { |
| 110 | const { theme } = this.props; |
no test coverage detected