aboutsummaryrefslogtreecommitdiff
path: root/include/BH/Math/Vec3i.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/BH/Math/Vec3i.h')
-rw-r--r--include/BH/Math/Vec3i.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/BH/Math/Vec3i.h b/include/BH/Math/Vec3i.h
index 4a9c163..c1972a5 100644
--- a/include/BH/Math/Vec3i.h
+++ b/include/BH/Math/Vec3i.h
@@ -8,43 +8,36 @@ void BH_Vec3iAdd(const int a[3],
int out[3]);
-
void BH_Vec3iSub(const int a[3],
const int b[3],
int out[3]);
-
void BH_Vec3iMul(const int a[3],
const int b[3],
int out[3]);
-
void BH_Vec3iScale(const int a[3],
int b,
int out[3]);
-
void BH_Vec3iMulAdd(const int a[3],
const int b[3],
const int c[3],
int out[3]);
-
void BH_Vec3iNegate(const int in[3],
int out[3]);
-
void BH_Vec3iMin(const int a[3],
const int b[3],
int out[3]);
-
void BH_Vec3iMax(const int a[3],
const int b[3],
int out[3]);