(a, b)
| 3052 | return true; |
| 3053 | } |
| 3054 | function d3_geo_compose(a, b) { |
| 3055 | function compose(x, y) { |
| 3056 | return x = a(x, y), b(x[0], x[1]); |
| 3057 | } |
| 3058 | if (a.invert && b.invert) compose.invert = function(x, y) { |
| 3059 | return x = b.invert(x, y), x && a.invert(x[0], x[1]); |
| 3060 | }; |
| 3061 | return compose; |
| 3062 | } |
| 3063 | function d3_geo_conic(projectAt) { |
| 3064 | var φ0 = 0, φ1 = π / 3, m = d3_geo_projectionMutator(projectAt), p = m(φ0, φ1); |
| 3065 | p.parallels = function(_) { |
no outgoing calls
no test coverage detected