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

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

d3.interpolateNumber = d3_interpolateNumber;

function d3_interpolateNumber(a, b) {
  a = +a, b = +b;
  return function(t) { return a * (1 - t) + b * t; };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy