Skip to content

Instantly share code, notes, and snippets.

View k4a-l's full-sized avatar

kasahala k4a-l

  • Japan
View GitHub Profile
@k4a-l
k4a-l / easing.js
Created August 27, 2020 05:54 — 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