소스 검색

Fix coding style #2

Henri Astre 11 년 전
부모
커밋
b2dd2418e2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/math/Quaternion.js

+ 2 - 2
src/math/Quaternion.js

@@ -399,9 +399,9 @@ THREE.Quaternion.prototype = {
 
 	slerp: function ( qb, t ) {
 
-		if (t === 0) return this;
+		if ( t === 0 ) return this;
 
-		if (t === 1) return this.copy( qb );
+		if ( t === 1 ) return this.copy( qb );
 
 		var x = this._x, y = this._y, z = this._z, w = this._w;