blob: 28a546452203a811006fa9c2f2cc732d5470a8e7 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef MATH_UTIL_H
#define MATH_UTIL_H
#include "vector3f.h"
#include "vector2f.h"
extern float baryCentric(vec3_t *p1, vec3_t *p2, vec3_t *p3, vec2_t *pos);
#endif // MATH_UTIL_H
|