Skip to content

Commit

Permalink
fmt code block (mrdoob#26792)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycw committed Sep 18, 2023
1 parent b6150e4 commit fffeb0c
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 16 deletions.
4 changes: 2 additions & 2 deletions docs/api/ar/scenes/Fog.html
Expand Up @@ -17,8 +17,8 @@ <h1>[name]</h1>
<h2>مثال للكود</h2>

<code>
const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
</code>

<h2>المنشئ (Constructor)</h2>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/ar/scenes/FogExp2.html
Expand Up @@ -18,8 +18,8 @@ <h1>[name]</h1>
<h2>مثال للكود</h2>

<code>
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
</code>

<h2>المنشئ (Constructor)</h2>
Expand Down
5 changes: 3 additions & 2 deletions docs/api/en/scenes/Fog.html
Expand Up @@ -16,8 +16,9 @@ <h1>[name]</h1>

<h2>Code Example</h2>

<code>const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
<code>
const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
</code>

<h2>Constructor</h2>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/en/scenes/FogExp2.html
Expand Up @@ -18,8 +18,8 @@ <h1>[name]</h1>
<h2>Code Example</h2>

<code>
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
</code>

<h2>Constructor</h2>
Expand Down
5 changes: 3 additions & 2 deletions docs/api/it/scenes/Fog.html
Expand Up @@ -13,8 +13,9 @@ <h1>[name]</h1>

<h2>Codice di Esempio</h2>

<code>const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
<code>
const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
</code>

<h2>Costruttore</h2>
Expand Down
5 changes: 3 additions & 2 deletions docs/api/it/scenes/FogExp2.html
Expand Up @@ -17,8 +17,9 @@ <h1>[name]</h1>

<h2>Codice di Esempio</h2>

<code>const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
<code>
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
</code>

<h2>Costruttore</h2>
Expand Down
5 changes: 3 additions & 2 deletions docs/api/zh/scenes/Fog.html
Expand Up @@ -13,8 +13,9 @@ <h1>雾([name])</h1>

<h2>代码示例</h2>

<code>const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
<code>
const scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0xcccccc, 10, 15 );
</code>

<h2>构造器</h2>
Expand Down
5 changes: 3 additions & 2 deletions docs/api/zh/scenes/FogExp2.html
Expand Up @@ -13,8 +13,9 @@ <h1>雾-指数([name])</h1>

<h2>代码示例</h2>

<code>const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
<code>
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2( 0xcccccc, 0.002 );
</code>

<h2>构造器</h2>
Expand Down

0 comments on commit fffeb0c

Please sign in to comment.