summaryrefslogtreecommitdiff
path: root/src/renderergl2/tr_extramath.h
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2014-06-17 17:43:05 +0100
committerTim Angus <tim@ngus.net>2014-06-17 17:43:43 +0100
commit77c45fa12305eb8c977c5c7803f6cb1f24ce4ec4 (patch)
treeec9324ad73575a42b2eec5050a746b07aa26989d /src/renderergl2/tr_extramath.h
parent1193e49c35fdd0ea24f21c6dff74b5b2cd074c3b (diff)
Various adjustments so it compiles
Diffstat (limited to 'src/renderergl2/tr_extramath.h')
-rw-r--r--src/renderergl2/tr_extramath.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/renderergl2/tr_extramath.h b/src/renderergl2/tr_extramath.h
index af7c3804..f1ea5767 100644
--- a/src/renderergl2/tr_extramath.h
+++ b/src/renderergl2/tr_extramath.h
@@ -77,6 +77,9 @@ static ID_INLINE int VectorCompare5(const vec5_t v1, const vec5_t v2)
return 1;
}
+void VectorLerp( vec3_t a, vec3_t b, float lerp, vec3_t c);
+
+
qboolean SpheresIntersect(vec3_t origin1, float radius1, vec3_t origin2, float radius2);
void BoundingSphereOfSpheres(vec3_t origin1, float radius1, vec3_t origin2, float radius2, vec3_t origin3, float *radius3);