summaryrefslogtreecommitdiffstats
path: root/src/math/VuVector.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2021-02-01 10:57:55 +0100
committeraap <aap@papnet.eu>2021-02-01 10:57:55 +0100
commit3f60034c391fd5da66639e4a29f121f18ead6255 (patch)
treef7d5c6b8ac6c7fba1a7a499c600ea551653f6f23 /src/math/VuVector.h
parentfix realloc (diff)
downloadre3-3f60034c391fd5da66639e4a29f121f18ead6255.tar
re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.gz
re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.bz2
re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.lz
re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.xz
re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.zst
re3-3f60034c391fd5da66639e4a29f121f18ead6255.zip
Diffstat (limited to '')
-rw-r--r--src/math/VuVector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/VuVector.h b/src/math/VuVector.h
index 30d62cfc..026965d1 100644
--- a/src/math/VuVector.h
+++ b/src/math/VuVector.h
@@ -3,10 +3,10 @@
class TYPEALIGN(16) CVuVector : public CVector
{
public:
- float w;
+// float w; // in CVector now
CVuVector(void) {}
CVuVector(float x, float y, float z) : CVector(x, y, z) {}
- CVuVector(float x, float y, float z, float w) : CVector(x, y, z), w(w) {}
+ CVuVector(float x, float y, float z, float w) : CVector(x, y, z)/*, w(w)*/ { this->w = w;}
CVuVector(const CVector &v) : CVector(v.x, v.y, v.z) {}
CVuVector(const RwV3d &v) : CVector(v) {}
/*