SineWaveGenerator.prototype.ease = function()

in website/assets/header.js [94:96]


SineWaveGenerator.prototype.ease = function(percent, amplitude) {
  return amplitude * (Math.sin(percent * PI2 - HALFPI) + 1) * 0.5;
}