Spaces:
Sleeping
Sleeping
File size: 149 Bytes
fcf3b03 | 1 2 3 4 5 6 7 | d3.interpolateRound = d3_interpolateRound;
function d3_interpolateRound(a, b) {
b -= a;
return function(t) { return Math.round(a + b * t); };
}
|