(x, y, circleCenter, radius)
| 324 | }); |
| 325 | |
| 326 | function _verifyPointInCircle(x, y, circleCenter, radius) { |
| 327 | var dist = Math.pow(x - circleCenter[0], 2) + Math.pow(y - circleCenter[1], 2); |
| 328 | return Math.abs(Math.sqrt(dist) - radius); |
| 329 | } |
| 330 | |
| 331 | it('scales multiline title to fit in hole', function(done) { |
| 332 | Plotly.newPlot(gd, [{ |
no outgoing calls
no test coverage detected
searching dependent graphs…