Browse Source

Merge branch 'patch-1' of https://github.com/cjbailey/three.js into dev

Mr.doob 7 years ago
parent
commit
b349852b76
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/math/Quaternion.js

+ 2 - 1
src/math/Quaternion.js

@@ -18,7 +18,8 @@ function Quaternion( x, y, z, w ) {
 }
 
 Object.assign( Quaternion, {
-
+	isQuaternion: true,
+	
 	slerp: function ( qa, qb, qm, t ) {
 
 		return qm.copy( qa ).slerp( qb, t );