Skip to content

Commit

Permalink
Docs: fix typo :P (mrdoob#27554)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhsiao1260 authored and AdaRoseCannon committed Jan 15, 2024
1 parent dcd47c8 commit ace9f85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/api/ar/objects/LOD.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2>مثال للكود</h2>

// إنشاء كرات مع 3 مستويات من التفاصيل وإنشاء مستويات LOD جديدة لهم
for( let i = 0; i < 3; i++ ) {
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i )
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i );
const mesh = new THREE.Mesh( geometry, material );
lod.addLevel( mesh, i * 75 );
}
Expand Down
2 changes: 1 addition & 1 deletion docs/api/en/objects/LOD.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2>Code Example</h2>

//Create spheres with 3 levels of detail and create new LOD levels for them
for( let i = 0; i < 3; i++ ) {
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i )
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i );
const mesh = new THREE.Mesh( geometry, material );
lod.addLevel( mesh, i * 75 );
}
Expand Down
2 changes: 1 addition & 1 deletion docs/api/it/objects/LOD.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2>Codice di Esempio</h2>
// Crea sfere con 3 livelli di dettaglio e crea nuovi livelli LOD per loro
for( let i = 0; i < 3; i++ ) {

const geometry = new THREE.IcosahedronGeometry( 10, 3 - i )
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i );

const mesh = new THREE.Mesh( geometry, material );

Expand Down
2 changes: 1 addition & 1 deletion docs/api/zh/objects/LOD.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h2>代码示例</h2>
//Create spheres with 3 levels of detail and create new LOD levels for them
for( let i = 0; i < 3; i++ ) {

const geometry = new THREE.IcosahedronGeometry( 10, 3 - i )
const geometry = new THREE.IcosahedronGeometry( 10, 3 - i );

const mesh = new THREE.Mesh( geometry, material );

Expand Down

0 comments on commit ace9f85

Please sign in to comment.