1
1
import { TupleToUnion } from "type-fest" ;
2
- import { clamp } from "./math" ;
3
2
import { Vector2d } from "./vector2d" ;
4
- import { Vector3d , vector3dPool } from "./vector3d" ;
3
+ import { Vector3d } from "./vector3d" ;
5
4
import { createPool } from "../system/pool.ts" ;
6
5
import { Point } from "../geometries/point.ts" ;
7
6
@@ -422,7 +421,7 @@ export class ObservableVector3d {
422
421
* @returns The dot product.
423
422
*/
424
423
dot ( v : Vector2d | Vector3d | ObservableVector3d ) {
425
- return this . x * v . x + this . y * v . y + this . z * ( "z" in v ? v . z : this . z ) ;
424
+ return this . _vector3d . dot ( v as Vector3d ) ;
426
425
}
427
426
428
427
/**
@@ -492,9 +491,11 @@ export class ObservableVector3d {
492
491
return target ;
493
492
}
494
493
495
- this . x += Math . cos ( angle ) * step ;
496
- this . y += Math . sin ( angle ) * step ;
497
-
494
+ this . set (
495
+ this . x + Math . cos ( angle ) * step ,
496
+ this . y + Math . sin ( angle ) * step ,
497
+ this . z ,
498
+ ) ;
498
499
return this ;
499
500
}
500
501
@@ -504,10 +505,7 @@ export class ObservableVector3d {
504
505
* @returns distance
505
506
*/
506
507
distance ( v : Vector2d | Vector3d | ObservableVector3d ) {
507
- const dx = this . x - v . x ;
508
- const dy = this . y - v . y ;
509
- const dz = this . z - ( "z" in v ? v . z : 0 ) ;
510
- return Math . sqrt ( dx * dx + dy * dy + dz * dz ) ;
508
+ return this . _vector3d . distance ( v as Vector3d ) ;
511
509
}
512
510
513
511
/**
@@ -516,7 +514,7 @@ export class ObservableVector3d {
516
514
* @returns angle in radians
517
515
*/
518
516
angle ( v : Vector2d | Vector3d | ObservableVector3d ) {
519
- return Math . acos ( clamp ( this . dot ( v ) / ( this . length ( ) * v . length ( ) ) , - 1 , 1 ) ) ;
517
+ return this . _vector3d . angle ( v as Vector3d ) ;
520
518
}
521
519
522
520
/**
@@ -542,18 +540,19 @@ export class ObservableVector3d {
542
540
543
541
/**
544
542
* return a clone copy of this vector
543
+ * @param [cb] callback function to override the clone values
545
544
* @returns new Vector3d
546
545
*/
547
- clone ( ) {
548
- return vector3dPool . get ( this . x , this . y , this . z ) ;
546
+ clone ( cb ?: ( ) => void ) {
547
+ return observableVector3dPool . get ( this . x , this . y , this . z , cb ) ;
549
548
}
550
549
551
550
/**
552
551
* convert the object to a string representation
553
552
* @returns stringified representation
554
553
*/
555
554
toString ( ) {
556
- return `x: ${ this . x } ,y: ${ this . y } ,z: ${ this . z } ` as const ;
555
+ return this . _vector3d . toString ( ) ;
557
556
}
558
557
559
558
/**
0 commit comments