aboutsummaryrefslogtreecommitdiff
path: root/include/BH/Math/Vec2i.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/BH/Math/Vec2i.h')
-rw-r--r--include/BH/Math/Vec2i.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/BH/Math/Vec2i.h b/include/BH/Math/Vec2i.h
index 5bb7934..36fa8a8 100644
--- a/include/BH/Math/Vec2i.h
+++ b/include/BH/Math/Vec2i.h
@@ -8,43 +8,36 @@ void BH_Vec2iAdd(const int a[2],
int out[2]);
-
void BH_Vec2iSub(const int a[2],
const int b[2],
int out[2]);
-
void BH_Vec2iMul(const int a[2],
const int b[2],
int out[2]);
-
void BH_Vec2iScale(const int a[2],
int b,
int out[2]);
-
void BH_Vec2iMulAdd(const int a[2],
const int b[2],
const int c[2],
int out[2]);
-
void BH_Vec2iNegate(const int in[2],
int out[2]);
-
void BH_Vec2iMin(const int a[2],
const int b[2],
int out[2]);
-
void BH_Vec2iMax(const int a[2],
const int b[2],
int out[2]);