1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- [page:BufferGeometry] →
- <h1>[name]</h1>
- <p class="desc">Questa classe può essere utilizzata come oggetto di supporto per la visualizzazione di una [page:BufferGeometry geometria] come wireframe.</p>
- <h2>Codice di Esempio</h2>
- <code>
- const geometry = new THREE.SphereGeometry( 100, 100, 100 );
- const wireframe = new THREE.WireframeGeometry( geometry );
- const line = new THREE.LineSegments( wireframe );
- line.material.depthTest = false;
- line.material.opacity = 0.25;
- line.material.transparent = true;
- scene.add( line );
- </code>
- <h2>Esempi</h2>
- <p>
- [example:webgl_helpers helpers]
- </p>
- <h2>Costruttore</h2>
- <h3>[name]( [param:BufferGeometry geometry] )</h3>
- <p>
- geometry — qualsiasi oggetto geometria.
- </p>
- <h2>Proprietà</h2>
- <p>Vedi la classe base [page:BufferGeometry] per le proprietà comuni.</p>
- <h2>Metodi</h2>
- <p>Vedi la classe base [page:BufferGeometry] per i metodi comuni.</p>
- <h2>Source</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </p>
- </body>
- </html>
|