aboutsummaryrefslogtreecommitdiff
path: root/include/BH/Math/Misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/BH/Math/Misc.h')
-rw-r--r--include/BH/Math/Misc.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/BH/Math/Misc.h b/include/BH/Math/Misc.h
new file mode 100644
index 0000000..0f25b0e
--- /dev/null
+++ b/include/BH/Math/Misc.h
@@ -0,0 +1,17 @@
+#ifndef BH_MATH_MISC_H
+#define BH_MATH_MISC_H
+
+#include "../Common.h"
+
+float BH_Lerpf(float a, float b, float t);
+
+
+
+void BH_Triangle3fBarycentric(const float a[3],
+ const float b[3],
+ const float c[3],
+ const float point[3],
+ float out[3]);
+
+
+#endif /* BH_MATH_MISC */