123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- import { Vector3 } from './Vector3.js';
- import { MathUtils } from './MathUtils.js';
- const _startP = /*@__PURE__*/ new Vector3();
- const _startEnd = /*@__PURE__*/ new Vector3();
- class Line3 {
- constructor( start, end ) {
- this.start = ( start !== undefined ) ? start : new Vector3();
- this.end = ( end !== undefined ) ? end : new Vector3();
- }
- set( start, end ) {
- this.start.copy( start );
- this.end.copy( end );
- return this;
- }
- clone() {
- return new this.constructor().copy( this );
- }
- copy( line ) {
- this.start.copy( line.start );
- this.end.copy( line.end );
- return this;
- }
- getCenter( target ) {
- if ( target === undefined ) {
- console.warn( 'THREE.Line3: .getCenter() target is now required' );
- target = new Vector3();
- }
- return target.addVectors( this.start, this.end ).multiplyScalar( 0.5 );
- }
- delta( target ) {
- if ( target === undefined ) {
- console.warn( 'THREE.Line3: .delta() target is now required' );
- target = new Vector3();
- }
- return target.subVectors( this.end, this.start );
- }
- distanceSq() {
- return this.start.distanceToSquared( this.end );
- }
- distance() {
- return this.start.distanceTo( this.end );
- }
- at( t, target ) {
- if ( target === undefined ) {
- console.warn( 'THREE.Line3: .at() target is now required' );
- target = new Vector3();
- }
- return this.delta( target ).multiplyScalar( t ).add( this.start );
- }
- closestPointToPointParameter( point, clampToLine ) {
- _startP.subVectors( point, this.start );
- _startEnd.subVectors( this.end, this.start );
- const startEnd2 = _startEnd.dot( _startEnd );
- const startEnd_startP = _startEnd.dot( _startP );
- let t = startEnd_startP / startEnd2;
- if ( clampToLine ) {
- t = MathUtils.clamp( t, 0, 1 );
- }
- return t;
- }
- closestPointToPoint( point, clampToLine, target ) {
- const t = this.closestPointToPointParameter( point, clampToLine );
- if ( target === undefined ) {
- console.warn( 'THREE.Line3: .closestPointToPoint() target is now required' );
- target = new Vector3();
- }
- return this.delta( target ).multiplyScalar( t ).add( this.start );
- }
- applyMatrix4( matrix ) {
- this.start.applyMatrix4( matrix );
- this.end.applyMatrix4( matrix );
- return this;
- }
- equals( line ) {
- return line.start.equals( this.start ) && line.end.equals( this.end );
- }
- }
- export { Line3 };
|