aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/core/math
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/core/math')
-rw-r--r--NorthstarDLL/core/math/vector.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/NorthstarDLL/core/math/vector.h b/NorthstarDLL/core/math/vector.h
index 112fabdf..8684908f 100644
--- a/NorthstarDLL/core/math/vector.h
+++ b/NorthstarDLL/core/math/vector.h
@@ -13,13 +13,6 @@ union Vector3
float raw[3];
- Vector3() : x(0), y(0), z(0) {}
- Vector3(float x, float y, float z) : x(x), y(y), z(z) {}
- Vector3(float* pRawFloats) // assumes float[3] => vector
- {
- memcpy(raw, pRawFloats, sizeof(this));
- }
-
void MakeValid()
{
for (auto& fl : raw)