Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
tweeny/tweeny.h
✓ #include <tweeny/tweeny.h>
Create a tween from 0 to 100 over 1 second and sample at 500ms.
#include <tweeny/tweeny.h>
#include <cstdio>
int main() {
auto t = tweeny::from(0.0).to(100.0).during(1000);
t.seek(500);
printf("Value at 500ms: %f\n", t.peek());
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.