(a, b, c)
| 2689 | return wn !== 0; |
| 2690 | } |
| 2691 | function isLeft(a, b, c) { |
| 2692 | return (b[0] - a[0]) * (c[1] - a[1]) - (c[0] - a[0]) * (b[1] - a[1]); |
| 2693 | } |
| 2694 | function interpolate(from, to, direction, listener) { |
| 2695 | var a = 0, a1 = 0; |
| 2696 | if (from == null || (a = corner(from, direction)) !== (a1 = corner(to, direction)) || comparePoints(from, to) < 0 ^ direction > 0) { |