Mouse position & selection; warning fixes

This commit is contained in:
2023-02-02 23:52:15 +00:00
parent fcf6f76949
commit 7e1eaaae64
22 changed files with 347 additions and 137 deletions

View File

@@ -49,7 +49,7 @@ double lerp_val(struct anim anim, double t) {
}
double cubic_val(struct anim anim, double t) {
return 0.0f;
}
double anim_val(struct anim anim, double t) {
@@ -57,4 +57,4 @@ double anim_val(struct anim anim, double t) {
return near_val(anim, t);
return lerp_val(anim, t);
}
}