Delt06 / easing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Easing

An implementation of easing functions.

Contents

  • Ease enum: different easing functions
  • EaseExtensions static class: GetValue extension method

Code example

var ease = Ease.OutBack;
var value = ease.GetValue(0.5f, overshoot: 2f);

References

Equations are taken from here.

About


Languages

Language:C# 100.0%