You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.6 KiB
50 lines
1.6 KiB
<!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:Object3D] → [page:Line] →
|
|
|
|
<h1>[name]</h1>
|
|
|
|
<p class="desc">Il [name] è un oggetto utilizzato per definire le griglie (grid). Le grigle sono array bidimensionali di linee.</p>
|
|
|
|
<h2>Codice di Esempio</h2>
|
|
|
|
<code>const size = 10;
|
|
const divisions = 10;
|
|
|
|
const gridHelper = new THREE.GridHelper( size, divisions );
|
|
scene.add( gridHelper );
|
|
</code>
|
|
|
|
<h2>Esempi</h2>
|
|
|
|
<p>
|
|
[example:webgl_helpers WebGL / helpers]
|
|
</p>
|
|
|
|
<h2>Costruttore</h2>
|
|
|
|
<h3>[name]( [param:number size], [param:Number divisions], [param:Color colorCenterLine], [param:Color colorGrid] )</h3>
|
|
<p>
|
|
size -- La dimensione della griglia. Il valore predefinito è 10. <br />
|
|
divisions -- Il numero di divisioni nella griglia. Il valore predefinito è 10. <br />
|
|
colorCenterLine -- (optional) Il colore della linea centrale. Può essere un [page:Color], un valore esadecimale e un nome CSS-Color. Il valore predefinito è 0x444444 <br />
|
|
colorGrid -- (optional) Il colore delle linee della griglia. Può essere un [page:Color], un valore esadecimale e un nome CSS-Color. Il valore predefinito è 0x888888
|
|
</p>
|
|
<p>
|
|
Crea un nuovo [name] di dimensioni 'size' e suddiso in 'divisions' segmenti per lato. I colori sono opzionali.
|
|
</p>
|
|
|
|
<h2>Source</h2>
|
|
|
|
<p>
|
|
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
|
|
</p>
|
|
</body>
|
|
</html>
|
|
|