(x, y)
| 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 | }; |