[page:Object3D] → [page:Line] → [page:LineSegments] →

[name]

Oggetto per visualizzare una [page:Box3].

Codice di Esempio

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 );

Costruttore

[name]( [param:Box3 box], [param:Color color] )

[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.

Proprietà

Vedi la classe base [page:LineSegments] per le proprietà in comune.

[property:Box3 box]

Il Box3 visualizzato.

Metodi

Vedi la classe base [page:LineSegments] per i metodi comuni.

[method:undefined updateMatrixWorld]( [param:Boolean force] )

Questo sovrascrive il metodo nella classe base [page:Object3D] così che aggiorni anche il wireframe box nell'ambito della proprietà [page:Box3Helper.box .box]

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]