(e)
| 6602 | return d3_scale_linearRebind(scale, linear); |
| 6603 | } |
| 6604 | function d3_scale_powPow(e) { |
| 6605 | return function(x) { |
| 6606 | return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e); |
| 6607 | }; |
| 6608 | } |
| 6609 | d3.scale.sqrt = function() { |
| 6610 | return d3.scale.pow().exponent(.5); |
| 6611 | }; |