Ver código fonte

add spacings to InterleavedBuffer

simonThiele 9 anos atrás
pai
commit
97374fdcbb
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      test/unit/core/InterleavedBuffer.js

+ 2 - 2
test/unit/core/InterleavedBuffer.js

@@ -4,10 +4,10 @@
 
 module( "InterleavedBuffer" );
 
-function checkInstanceAgainstCopy(instance, copiedInstance) {
+function checkInstanceAgainstCopy( instance, copiedInstance ) {
 	ok( copiedInstance instanceof THREE.InterleavedBuffer, "the clone has the correct type" );
 
-	for (var i = 0; i < instance.array.length; i++) {
+	for ( var i = 0; i < instance.array.length; i++ ) {
 		ok( copiedInstance.array[i] === instance.array[i], "array was copied" );
 	}