This repository has been archived on 2026-04-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bhlib/include/BH/Math/Misc.h

18 lines
386 B
C
Raw Normal View History

#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 */