[added] lerp, with both an unprecise and a precise option.

This commit is contained in:
vicenteferrari 2019-10-01 01:36:01 -03:00
parent 42f6ba10c9
commit 508650491a
No known key found for this signature in database
GPG Key ID: 1BC549A15A3970B8
1 changed files with 28 additions and 0 deletions

28
misc/lerp.c Normal file
View File

@ -0,0 +1,28 @@
#include <stdio.h>
#include <math.h>
float lerp(float k0, float k1, float t) {
return k0 + t * (k1 - k0);
}
float lerp_precise(int k0, int k1, float t) {
return (1 - t) * k0 + t * k1;
}
int main() {
float start = 0;
float finish = 5;
float steps = 0;
printf("Input a number, this is the bigger bound of the lerp:\n");
scanf("%f", &finish);
printf("Input a number, this is in how many steps you want to divide the lerp:\n");
scanf("%f", &steps);
for (int i = 0; i < steps + 1; i++) {
printf("%f\n", lerp(start, finish, i / steps));
}
return 0;
}