(size)
| 117 | return ~~(value * 1000 + (value < 0 ? -.5 : .5)) / 1000; |
| 118 | }, |
| 119 | _getSquarePathData = function _getSquarePathData(size) { |
| 120 | size = _round(size); |
| 121 | return ["M-" + size, -size, size, -size, size, size, -size, size + "z"].join(_comma); |
| 122 | }, |
| 123 | _getCirclePathData = function _getCirclePathData(size) { |
| 124 | var circ = 0.552284749831, |
| 125 | rcirc = _round(size * circ); |
no test coverage detected
searching dependent graphs…