Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: fix typo :P #27554

Merged
merged 1 commit into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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