All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.interpolate.round.js Maven / Gradle / Ivy

d3.interpolateRound = d3_interpolateRound;

function d3_interpolateRound(a, b) {
  b -= a;
  return function(t) { return Math.round(a + b * t); };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy