@@ -395,7 +395,9 @@ Object.assign( Quaternion.prototype, {
inverse: function () {
- return this.conjugate().normalize();
+ // quaternion is assumed to have unit length
+
+ return this.conjugate();
},