summaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 9c699f5..d5e2b96 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -18,6 +18,7 @@
#include "util.h"
+
float bezierInterpolate(float dist, float c0, float c1, float c2, float c3) {
float distp = 1 - dist;
return (distp*distp*distp) * c0 +