|
@@ -1,3 +1,4 @@
|
|
|
|
+import { BufferAttribute } from './../core/BufferAttribute';
|
|
import { Vector3 } from './Vector3';
|
|
import { Vector3 } from './Vector3';
|
|
import { Object3D } from './../core/Object3D';
|
|
import { Object3D } from './../core/Object3D';
|
|
import { Sphere } from './Sphere';
|
|
import { Sphere } from './Sphere';
|
|
@@ -15,6 +16,7 @@ export class Box3 {
|
|
|
|
|
|
set( min: Vector3, max: Vector3 ): this;
|
|
set( min: Vector3, max: Vector3 ): this;
|
|
setFromArray( array: ArrayLike<number> ): this;
|
|
setFromArray( array: ArrayLike<number> ): this;
|
|
|
|
+ setFromBufferAttribute( bufferAttribute: BufferAttribute ): this;
|
|
setFromPoints( points: Vector3[] ): this;
|
|
setFromPoints( points: Vector3[] ): this;
|
|
setFromCenterAndSize( center: Vector3, size: Vector3 ): this;
|
|
setFromCenterAndSize( center: Vector3, size: Vector3 ): this;
|
|
setFromObject( object: Object3D ): this;
|
|
setFromObject( object: Object3D ): this;
|