(a, b)
| 10816 | // Intersections are sorted along the clip edge. For both antimeridian cutting |
| 10817 | // and circle clipping, the same comparison is used. |
| 10818 | function compareIntersection(a, b) { |
| 10819 | return ((a = a.x)[0] < 0 ? a[1] - halfPi$1 - epsilon$1 : halfPi$1 - a[1]) |
| 10820 | - ((b = b.x)[0] < 0 ? b[1] - halfPi$1 - epsilon$1 : halfPi$1 - b[1]); |
| 10821 | } |
| 10822 | |
| 10823 | var clipAntimeridian = clip( |
| 10824 | function() { return true; }, |
nothing calls this directly
no test coverage detected