File size: 149 Bytes
e7b2eb4
 
 
 
 
 
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); };
}