123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- import { Box3 } from './Box3.js';
- import { Vector3 } from './Vector3.js';
- var _box = new Box3();
- /**
- * @author bhouston / http://clara.io
- * @author mrdoob / http://mrdoob.com/
- */
- function Sphere( center, radius ) {
- this.center = ( center !== undefined ) ? center : new Vector3();
- this.radius = ( radius !== undefined ) ? radius : 0;
- }
- Object.assign( Sphere.prototype, {
- set: function ( center, radius ) {
- this.center.copy( center );
- this.radius = radius;
- return this;
- },
- setFromPoints: function ( points, optionalCenter ) {
- var center = this.center;
- if ( optionalCenter !== undefined ) {
- center.copy( optionalCenter );
- } else {
- _box.setFromPoints( points ).getCenter( center );
- }
- var maxRadiusSq = 0;
- for ( var i = 0, il = points.length; i < il; i ++ ) {
- maxRadiusSq = Math.max( maxRadiusSq, center.distanceToSquared( points[ i ] ) );
- }
- this.radius = Math.sqrt( maxRadiusSq );
- return this;
- },
- clone: function () {
- return new this.constructor().copy( this );
- },
- copy: function ( sphere ) {
- this.center.copy( sphere.center );
- this.radius = sphere.radius;
- return this;
- },
- empty: function () {
- return ( this.radius <= 0 );
- },
- makeEmpty: function () {
- this.center.set( 0, 0, 0 );
- this.radius = 0;
- return this;
- },
- containsPoint: function ( point ) {
- return ( point.distanceToSquared( this.center ) <= ( this.radius * this.radius ) );
- },
- distanceToPoint: function ( point ) {
- return ( point.distanceTo( this.center ) - this.radius );
- },
- intersectsSphere: function ( sphere ) {
- var radiusSum = this.radius + sphere.radius;
- return sphere.center.distanceToSquared( this.center ) <= ( radiusSum * radiusSum );
- },
- intersectsBox: function ( box ) {
- return box.intersectsSphere( this );
- },
- intersectsPlane: function ( plane ) {
- return Math.abs( plane.distanceToPoint( this.center ) ) <= this.radius;
- },
- clampPoint: function ( point, target ) {
- var deltaLengthSq = this.center.distanceToSquared( point );
- if ( target === undefined ) {
- console.warn( 'THREE.Sphere: .clampPoint() target is now required' );
- target = new Vector3();
- }
- target.copy( point );
- if ( deltaLengthSq > ( this.radius * this.radius ) ) {
- target.sub( this.center ).normalize();
- target.multiplyScalar( this.radius ).add( this.center );
- }
- return target;
- },
- getBoundingBox: function ( target ) {
- if ( target === undefined ) {
- console.warn( 'THREE.Sphere: .getBoundingBox() target is now required' );
- target = new Box3();
- }
- target.set( this.center, this.center );
- target.expandByScalar( this.radius );
- return target;
- },
- applyMatrix4: function ( matrix ) {
- this.center.applyMatrix4( matrix );
- this.radius = this.radius * matrix.getMaxScaleOnAxis();
- return this;
- },
- translate: function ( offset ) {
- this.center.add( offset );
- return this;
- },
- equals: function ( sphere ) {
- return sphere.center.equals( this.center ) && ( sphere.radius === this.radius );
- }
- } );
- export { Sphere };
|