Skip to content

Instantly share code, notes, and snippets.

@solingjees
solingjees / easing.js
Created August 10, 2020 17:26 — 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
@solingjees
solingjees / cloudSettings
Created May 20, 2020 01:58
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-05-20T01:58:44.927Z","extensionVersion":"v3.4.3"}
@solingjees
solingjees / cloudSettings
Created April 11, 2020 04:51
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-04-11T04:51:20.938Z","extensionVersion":"v3.4.3"}