From aa2b36105b469e1799c45e64c44204067182c302 Mon Sep 17 00:00:00 2001 From: "Mr.doob" Date: Sun, 30 Jun 2013 23:09:56 +0200 Subject: [PATCH] Fixed remaining getter based value access. --- src/math/Quaternion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/Quaternion.js b/src/math/Quaternion.js index 01954855aa..6519f65c13 100644 --- a/src/math/Quaternion.js +++ b/src/math/Quaternion.js @@ -415,7 +415,7 @@ THREE.Quaternion.prototype = { equals: function ( quaternion ) { - return ( quaternion._x === this._x ) && ( quaternion._y === this.y ) && ( quaternion._z === this._z ) && ( quaternion._w === this._w ); + return ( quaternion._x === this._x ) && ( quaternion._y === this._y ) && ( quaternion._z === this._z ) && ( quaternion._w === this._w ); }, -- GitLab