@@ -111,7 +111,7 @@ THREE.Math = {
randInt: function ( low, high ) {
- return Math.floor( this.randFloat( low, high ) );
+ return low + Math.floor( Math.random() * ( high - low + 1 ) );
},