A collection of basic easing functions for Python, implementing Robert Penner's easing equations. Current version 1.0.4, with infrequent releases and no active maintenance.
pip install easing-functionsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Import an easing class (e.g., QuadEaseIn), instantiate with start, end, and duration, then call the instance with a time value (0 <= t <= duration) to get the eased value.
Ensure t in [0, duration].
Instantiate as QuadEaseIn(start=0.0, end=10.0, duration=2.0).
Use class instantiation and call the object.
No dependency data recorded yet.