| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /**
- * @author WestLangley / http://github.com/WestLangley
- */
- import { Box3 } from '../math/Box3';
- import { LineSegments } from '../objects/LineSegments';
- import { LineBasicMaterial } from '../materials/LineBasicMaterial';
- import { BufferAttribute } from '../core/BufferAttribute';
- import { Float32BufferAttribute } from '../core/BufferAttribute';
- import { BufferGeometry } from '../core/BufferGeometry';
- function Box3Helper( box, hex ) {
- this.type = 'Box3Helper';
- this.box = box;
- var color = ( hex !== undefined ) ? hex : 0xffff00;
- var indices = new Uint16Array( [ 0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7 ] );
- var positions = [ 1, 1, 1, - 1, 1, 1, - 1, - 1, 1, 1, - 1, 1, 1, 1, - 1, - 1, 1, - 1, - 1, - 1, - 1, 1, - 1, - 1 ];
- var geometry = new BufferGeometry();
- geometry.setIndex( new BufferAttribute( indices, 1 ) );
- geometry.addAttribute( 'position', new Float32BufferAttribute( positions, 3 ) );
- LineSegments.call( this, geometry, new LineBasicMaterial( { color: color } ) );
- this.geometry.computeBoundingSphere();
- this.onBeforeRender();
- }
- Box3Helper.prototype = Object.create( LineSegments.prototype );
- Box3Helper.prototype.constructor = Box3Helper;
- Box3Helper.prototype.onBeforeRender = function () {
- var box = this.box;
- if ( box.isEmpty() ) return;
- box.getCenter( this.position );
- box.getSize( this.scale );
- this.scale.multiplyScalar( 0.5 );
- };
- export { Box3Helper };
|