UNPKG
@thewtex/vtk.js-esm
Version:
latest (18.4.2-77b22c7239.1)
18.4.2-77b22c7239.1
18.4.2-77b22c7239
Visualization Toolkit for the Web
github.com/kitware/vtk-js
kitware/vtk-js
@thewtex/vtk.js-esm
/
vendor
/
d3-interpolate
/
src
/
round.js
8 lines
(6 loc)
•
159 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
function
interpolateRound
(
a, b
) {
return
a = +a, b = +b,
function
(
t
) {
return
Math
.
round
(a * (
1
- t) + b * t); }; }
export
{ interpolateRound
as
i };