Sfoglia il codice sorgente

Curly braces changed to sit on the same line

Andrii Iudin 8 anni fa
parent
commit
5ebc7f8c40
1 ha cambiato i file con 2 aggiunte e 4 eliminazioni
  1. 2 4
      examples/js/loaders/VTKLoader.js

+ 2 - 4
examples/js/loaders/VTKLoader.js

@@ -532,8 +532,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
 
 		}
 
-		function Float32Concat(first, second)
-		{
+		function Float32Concat(first, second) {
 		    var firstLength = first.length,
 		        result = new Float32Array(firstLength + second.length);
 
@@ -543,8 +542,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
 		    return result;
 		}
 
-		function Int32Concat(first, second)
-		{
+		function Int32Concat(first, second) {
 		    var firstLength = first.length,
 		        result = new Int32Array(firstLength + second.length);