(a, b)
| 2096 | return [lineLength, halfWidth - xDiff, halfWidth + xDiff, halfHeight - yDiff, halfHeight + yDiff]; |
| 2097 | }; |
| 2098 | var distance = function (a, b) { return Math.sqrt(a * a + b * b); }; |
| 2099 | var findCorner = function (width, height, x, y, closest) { |
| 2100 | var corners = [ |
| 2101 | [0, 0], |
no outgoing calls
no test coverage detected
searching dependent graphs…