(ax, ay, bx, by)
| 2563 | exports.DefaultHandlers = DefaultHandlers; |
| 2564 | |
| 2565 | function calcDistance(ax, ay, bx, by) { |
| 2566 | return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2)); |
| 2567 | } |
| 2568 | |
| 2569 | function calcRangeOrientation(range, cursor) { |
| 2570 | if (range.start.row == range.end.row) |
no outgoing calls
no test coverage detected