diff --git a/examples/js/postprocessing/BloomPass.js b/examples/js/postprocessing/BloomPass.js index ca2de01a2fad0c0c52dfd462e40263fa7f605f16..78abc058fc8209d735d58b57d2413a32cd3ec445 100644 --- a/examples/js/postprocessing/BloomPass.js +++ b/examples/js/postprocessing/BloomPass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.BloomPass = function( strength, kernelSize, sigma, resolution ) { +THREE.BloomPass = function ( strength, kernelSize, sigma, resolution ) { strength = ( strength !== undefined ) ? strength : 1; kernelSize = ( kernelSize !== undefined ) ? kernelSize : 25; diff --git a/examples/js/postprocessing/DotScreenPass.js b/examples/js/postprocessing/DotScreenPass.js index 0cafe262019a1292277d45ec729fcc34c054bc85..0edcb8fc1e432908352a3c2e1f2b83d0c8286425 100644 --- a/examples/js/postprocessing/DotScreenPass.js +++ b/examples/js/postprocessing/DotScreenPass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.DotScreenPass = function( center, angle, scale ) { +THREE.DotScreenPass = function ( center, angle, scale ) { var shader = THREE.ShaderExtras[ "dotscreen" ]; diff --git a/examples/js/postprocessing/EffectComposer.js b/examples/js/postprocessing/EffectComposer.js index 5c796ff6bfd5cc3f38022ab075dc882e0c20b26c..ef07dd1f1b81dca3f0aa65f18eecaa4cc4c6317d 100644 --- a/examples/js/postprocessing/EffectComposer.js +++ b/examples/js/postprocessing/EffectComposer.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.EffectComposer = function( renderer, renderTarget ) { +THREE.EffectComposer = function ( renderer, renderTarget ) { this.renderer = renderer; diff --git a/examples/js/postprocessing/FilmPass.js b/examples/js/postprocessing/FilmPass.js index 3ff688431235ede9e2f3366ef513c63e71a4d76a..be6acb262c4df06d86017784d407a043d6a2ef59 100644 --- a/examples/js/postprocessing/FilmPass.js +++ b/examples/js/postprocessing/FilmPass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.FilmPass = function( noiseIntensity, scanlinesIntensity, scanlinesCount, grayscale ) { +THREE.FilmPass = function ( noiseIntensity, scanlinesIntensity, scanlinesCount, grayscale ) { var shader = THREE.ShaderExtras[ "film" ]; diff --git a/examples/js/postprocessing/SavePass.js b/examples/js/postprocessing/SavePass.js index e5c2589fa16b5b1038aa09ce218db1e3ebbfce1b..b604d142b72883d8ee60575aac54f9e3343591c2 100644 --- a/examples/js/postprocessing/SavePass.js +++ b/examples/js/postprocessing/SavePass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.SavePass = function( renderTarget ) { +THREE.SavePass = function ( renderTarget ) { var shader = THREE.ShaderExtras[ "screen" ]; diff --git a/examples/js/postprocessing/ShaderPass.js b/examples/js/postprocessing/ShaderPass.js index 13c9e7552c037de3629e97ac2dea771aa18adec6..8817bf1ac60ebe940d191ecdbce44e46541800d0 100644 --- a/examples/js/postprocessing/ShaderPass.js +++ b/examples/js/postprocessing/ShaderPass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.ShaderPass = function( shader, textureID ) { +THREE.ShaderPass = function ( shader, textureID ) { this.textureID = ( textureID !== undefined ) ? textureID : "tDiffuse"; diff --git a/examples/js/postprocessing/TexturePass.js b/examples/js/postprocessing/TexturePass.js index e0fb1383edf3f2c0c35da82bde7f274591957638..6d104de4b68643a35bde07658701a0753f62b8bb 100644 --- a/examples/js/postprocessing/TexturePass.js +++ b/examples/js/postprocessing/TexturePass.js @@ -2,7 +2,7 @@ * @author alteredq / http://alteredqualia.com/ */ -THREE.TexturePass = function( texture, opacity ) { +THREE.TexturePass = function ( texture, opacity ) { var shader = THREE.ShaderExtras[ "screen" ];