Skip to content

Instantly share code, notes, and snippets.

View stabla's full-sized avatar
🦾
Focusing

Guillaume Bonnet stabla

🦾
Focusing
View GitHub Profile
@stabla
stabla / keybase.md
Created October 25, 2020 12:00
keybase.md

Keybase proof

I hereby claim:

  • I am stabla on github.
  • I am stabla (https://keybase.io/stabla) on keybase.
  • I have a public key whose fingerprint is D153 8E00 CE86 D1AD 4F99 EAFD 5621 F5E1 F826 2546

To claim this, I am signing this object:

@stabla
stabla / DurationDivide.js
Last active February 12, 2017 00:03
Duration
var Easing = function (render, duration, easing) {
var start = Date.now();
for(var j in toChangeStep) {
toChangeStep[j] = (finalState[j] - figure[j])/ duration;
// ouput is right, but in fact, it's completly wrong because the animation doesn't have time to go to final value.
}
}