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

package.src.scale.bilinear.js Maven / Gradle / Ivy

function d3_scale_bilinear(domain, range, uninterpolate, interpolate) {
  var u = uninterpolate(domain[0], domain[1]),
      i = interpolate(range[0], range[1]);
  return function(x) {
    return i(u(x));
  };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy