(a, b)
| 2796 | return true; |
| 2797 | } |
| 2798 | function d3_geo_compose(a, b) { |
| 2799 | function compose(x, y) { |
| 2800 | return x = a(x, y), b(x[0], x[1]); |
| 2801 | } |
| 2802 | if (a.invert && b.invert) compose.invert = function(x, y) { |
| 2803 | return x = b.invert(x, y), x && a.invert(x[0], x[1]); |
| 2804 | }; |
| 2805 | return compose; |
| 2806 | } |
| 2807 | function d3_geo_resample(project) { |
| 2808 | var δ2 = .5, maxDepth = 16; |
| 2809 | function resample(stream) { |
no outgoing calls
no test coverage detected