]> git.lizzy.rs Git - irrlicht.git/blobdiff - include/quaternion.h
Delete lots of unused features (#48)
[irrlicht.git] / include / quaternion.h
index 5fdff7985542e84dcc801a5ae4447038d0250472..85c279230cda3fcb628def669c16199cb237e613 100644 (file)
@@ -55,9 +55,6 @@ class quaternion
                //! inequality operator\r
                bool operator!=(const quaternion& other) const;\r
 \r
-               //! Assignment operator\r
-               inline quaternion& operator=(const quaternion& other);\r
-\r
 #ifndef IRR_TEST_BROKEN_QUATERNION_USE\r
                //! Matrix assignment operator\r
                inline quaternion& operator=(const matrix4& other);\r
@@ -240,16 +237,6 @@ inline bool quaternion::operator!=(const quaternion& other) const
        return !(*this == other);\r
 }\r
 \r
-// assignment operator\r
-inline quaternion& quaternion::operator=(const quaternion& other)\r
-{\r
-       X = other.X;\r
-       Y = other.Y;\r
-       Z = other.Z;\r
-       W = other.W;\r
-       return *this;\r
-}\r
-\r
 #ifndef IRR_TEST_BROKEN_QUATERNION_USE\r
 // matrix assignment operator\r
 inline quaternion& quaternion::operator=(const matrix4& m)\r