aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/core/math/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/core/math/vector.h')
-rw-r--r--NorthstarDLL/core/math/vector.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/NorthstarDLL/core/math/vector.h b/NorthstarDLL/core/math/vector.h
deleted file mode 100644
index 8684908f..00000000
--- a/NorthstarDLL/core/math/vector.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#include <cmath>
-
-#pragma once
-
-union Vector3
-{
- struct
- {
- float x;
- float y;
- float z;
- };
-
- float raw[3];
-
- void MakeValid()
- {
- for (auto& fl : raw)
- if (std::isnan(fl))
- fl = 0;
- }
-
- // todo: more operators maybe
- bool operator==(const Vector3& other)
- {
- return x == other.x && y == other.y && z == other.z;
- }
-};
-
-union QAngle
-{
- struct
- {
- float x;
- float y;
- float z;
- float w;
- };
-
- float raw[4];
-
- // todo: more operators maybe
- bool operator==(const QAngle& other)
- {
- return x == other.x && y == other.y && z == other.z && w == other.w;
- }
-};