Browse Source

Clean up.

Mr.doob 9 years ago
parent
commit
83c43a74c6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/math/Box2.js
  2. 1 1
      src/math/Euler.js

+ 1 - 1
src/math/Box2.js

@@ -28,7 +28,7 @@ THREE.Box2.prototype = {
 
 		for ( var i = 0, il = points.length; i < il; i ++ ) {
 
-			this.expandByPoint( points[ i ] )
+			this.expandByPoint( points[ i ] );
 
 		}
 

+ 1 - 1
src/math/Euler.js

@@ -88,7 +88,7 @@ THREE.Euler.prototype = {
 
 	clone: function () {
 
-		return new this.constructor( this._x, this._y, this._z, this._order);
+		return new this.constructor( this._x, this._y, this._z, this._order );
 
 	},