Skip to content

Instantly share code, notes, and snippets.

View pizzaeater's full-sized avatar

Evgeny Nepomnyashchiy pizzaeater

View GitHub Profile
@pizzaeater
pizzaeater / easing.js
Created May 25, 2020 08:16 — forked from gre/easing.js
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {
// no easing, no acceleration
linear: t => t,
// accelerating from zero velocity
easeInQuad: t => t*t,
// decelerating to zero velocity