Your IP : 216.73.216.86


Current Path : /home/emeraadmin/www/node_modules/d3-ease/src/
Upload File :
Current File : /home/emeraadmin/www/node_modules/d3-ease/src/exp.js

export function expIn(t) {
  return Math.pow(2, 10 * t - 10);
}

export function expOut(t) {
  return 1 - Math.pow(2, -10 * t);
}

export function expInOut(t) {
  return ((t *= 2) <= 1 ? Math.pow(2, 10 * t - 10) : 2 - Math.pow(2, 10 - 10 * t)) / 2;
}