From 01adb9bb2897e14f3d2cfd8d3f16bc2608f3563f Mon Sep 17 00:00:00 2001 From: Mugen87 Date: Mon, 5 May 2025 09:37:33 +0200 Subject: [PATCH] Docs: Fix typo. --- examples/jsm/postprocessing/AfterimagePass.js | 4 ++-- examples/jsm/postprocessing/BloomPass.js | 2 +- examples/jsm/postprocessing/BokehPass.js | 2 +- examples/jsm/postprocessing/GTAOPass.js | 2 +- examples/jsm/postprocessing/HalftonePass.js | 2 +- examples/jsm/postprocessing/OutlinePass.js | 2 +- examples/jsm/postprocessing/Pass.js | 2 +- examples/jsm/postprocessing/RenderPixelatedPass.js | 2 +- examples/jsm/postprocessing/RenderTransitionPass.js | 2 +- examples/jsm/postprocessing/SAOPass.js | 2 +- examples/jsm/postprocessing/SMAAPass.js | 2 +- examples/jsm/postprocessing/SSAARenderPass.js | 2 +- examples/jsm/postprocessing/SSAOPass.js | 2 +- examples/jsm/postprocessing/SSRPass.js | 2 +- examples/jsm/postprocessing/SavePass.js | 2 +- examples/jsm/postprocessing/UnrealBloomPass.js | 2 +- 16 files changed, 17 insertions(+), 17 deletions(-) diff --git a/examples/jsm/postprocessing/AfterimagePass.js b/examples/jsm/postprocessing/AfterimagePass.js index 6d3f2d467c1599..b770622c62dc19 100644 --- a/examples/jsm/postprocessing/AfterimagePass.js +++ b/examples/jsm/postprocessing/AfterimagePass.js @@ -91,7 +91,7 @@ class AfterimagePass extends Pass { /** * The damping intensity, from 0.0 to 1.0. A higher value means a stronger after image effect. - * + * * @type {number} */ get damp() { @@ -154,7 +154,7 @@ class AfterimagePass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/BloomPass.js b/examples/jsm/postprocessing/BloomPass.js index 5e9c6bd5776e88..5394a43ea04f23 100644 --- a/examples/jsm/postprocessing/BloomPass.js +++ b/examples/jsm/postprocessing/BloomPass.js @@ -167,7 +167,7 @@ class BloomPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/BokehPass.js b/examples/jsm/postprocessing/BokehPass.js index 25a5220ca552a5..3bc06db46f5305 100644 --- a/examples/jsm/postprocessing/BokehPass.js +++ b/examples/jsm/postprocessing/BokehPass.js @@ -179,7 +179,7 @@ class BokehPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/GTAOPass.js b/examples/jsm/postprocessing/GTAOPass.js index b55c3ccdd22712..1864a60026ba3a 100644 --- a/examples/jsm/postprocessing/GTAOPass.js +++ b/examples/jsm/postprocessing/GTAOPass.js @@ -242,7 +242,7 @@ class GTAOPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/HalftonePass.js b/examples/jsm/postprocessing/HalftonePass.js index e4110c8da1432e..5445cdcbd922e6 100644 --- a/examples/jsm/postprocessing/HalftonePass.js +++ b/examples/jsm/postprocessing/HalftonePass.js @@ -108,7 +108,7 @@ class HalftonePass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/OutlinePass.js b/examples/jsm/postprocessing/OutlinePass.js index 84938f6c680ff1..a34340d00630f9 100644 --- a/examples/jsm/postprocessing/OutlinePass.js +++ b/examples/jsm/postprocessing/OutlinePass.js @@ -269,7 +269,7 @@ class OutlinePass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/Pass.js b/examples/jsm/postprocessing/Pass.js index b3eec28f760f4e..50acb4784ee0d6 100644 --- a/examples/jsm/postprocessing/Pass.js +++ b/examples/jsm/postprocessing/Pass.js @@ -69,7 +69,7 @@ class Pass { * * @abstract * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( /* width, height */ ) {} diff --git a/examples/jsm/postprocessing/RenderPixelatedPass.js b/examples/jsm/postprocessing/RenderPixelatedPass.js index b8f6781b15abf6..4eebcfa3f5ab83 100644 --- a/examples/jsm/postprocessing/RenderPixelatedPass.js +++ b/examples/jsm/postprocessing/RenderPixelatedPass.js @@ -121,7 +121,7 @@ class RenderPixelatedPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/RenderTransitionPass.js b/examples/jsm/postprocessing/RenderTransitionPass.js index 9a72dd77681863..4e1535bb9e4026 100644 --- a/examples/jsm/postprocessing/RenderTransitionPass.js +++ b/examples/jsm/postprocessing/RenderTransitionPass.js @@ -129,7 +129,7 @@ class RenderTransitionPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SAOPass.js b/examples/jsm/postprocessing/SAOPass.js index 100cd6f2b0bcea..5956de5d60a904 100644 --- a/examples/jsm/postprocessing/SAOPass.js +++ b/examples/jsm/postprocessing/SAOPass.js @@ -294,7 +294,7 @@ class SAOPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SMAAPass.js b/examples/jsm/postprocessing/SMAAPass.js index d34c5952c6b741..e330f9048562e0 100644 --- a/examples/jsm/postprocessing/SMAAPass.js +++ b/examples/jsm/postprocessing/SMAAPass.js @@ -178,7 +178,7 @@ class SMAAPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SSAARenderPass.js b/examples/jsm/postprocessing/SSAARenderPass.js index ff7c009092e05e..797c466f1f49c7 100644 --- a/examples/jsm/postprocessing/SSAARenderPass.js +++ b/examples/jsm/postprocessing/SSAARenderPass.js @@ -141,7 +141,7 @@ class SSAARenderPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SSAOPass.js b/examples/jsm/postprocessing/SSAOPass.js index 9b500dcec018e7..8fbbc05c9f5986 100644 --- a/examples/jsm/postprocessing/SSAOPass.js +++ b/examples/jsm/postprocessing/SSAOPass.js @@ -351,7 +351,7 @@ class SSAOPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SSRPass.js b/examples/jsm/postprocessing/SSRPass.js index 05d57d7f4f3d66..dfd4fe4154e58e 100644 --- a/examples/jsm/postprocessing/SSRPass.js +++ b/examples/jsm/postprocessing/SSRPass.js @@ -654,7 +654,7 @@ class SSRPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/SavePass.js b/examples/jsm/postprocessing/SavePass.js index 910dad0474c218..f92292e9df34bb 100644 --- a/examples/jsm/postprocessing/SavePass.js +++ b/examples/jsm/postprocessing/SavePass.js @@ -105,7 +105,7 @@ class SavePass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) { diff --git a/examples/jsm/postprocessing/UnrealBloomPass.js b/examples/jsm/postprocessing/UnrealBloomPass.js index 3cb24ba3296d44..5ad6fc0ce4ac2a 100644 --- a/examples/jsm/postprocessing/UnrealBloomPass.js +++ b/examples/jsm/postprocessing/UnrealBloomPass.js @@ -242,7 +242,7 @@ class UnrealBloomPass extends Pass { * Sets the size of the pass. * * @param {number} width - The width to set. - * @param {number} height - The width to set. + * @param {number} height - The height to set. */ setSize( width, height ) {