Blame view

天文台pc/tianwentai-ui/node_modules/d3-interpolate/src/round.js 122 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
  export default function(a, b) {
    return a = +a, b = +b, function(t) {
      return Math.round(a * (1 - t) + b * t);
    };
  }