(ax, ay, bx, by)
| 2549 | exports.DefaultHandlers = DefaultHandlers; |
| 2550 | |
| 2551 | function calcDistance(ax, ay, bx, by) { |
| 2552 | return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2)); |
| 2553 | } |
| 2554 | |
| 2555 | function calcRangeOrientation(range, cursor) { |
| 2556 | if (range.start.row == range.end.row) |
no outgoing calls
no test coverage detected