UNPKG

@plotly/d3

Version:

A JavaScript visualization library for HTML and SVG.

7 lines (5 loc) 149 B
d3.interpolateRound = d3_interpolateRound; function d3_interpolateRound(a, b) { b -= a; return function(t) { return Math.round(a + b * t); }; }