Oggetto per visualizzare una [page:Box3].
const box = new THREE.Box3();
box.setFromCenterAndSize( new THREE.Vector3( 1, 1, 1 ), new THREE.Vector3( 2, 1, 3 ) );
const helper = new THREE.Box3Helper( box, 0xffff00 );
scene.add( helper );
[page:Box3 box] -- il Box3 da mostrare.
[page:Color color] -- (opzionale) il colore del box. Il valore predefinito è 0xffff00.
Crea un nuovo wireframe box che rappresenta il Box3 passato.
Vedi la classe base [page:LineSegments] per le proprietà in comune.
Il Box3 visualizzato.
Vedi la classe base [page:LineSegments] per i metodi comuni.
Questo sovrascrive il metodo nella classe base [page:Object3D] così che aggiorni anche il wireframe box nell'ambito della proprietà [page:Box3Helper.box .box]
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]