Skip to content

Commit d934ca5

Browse files
committed
improved Observable3d implementation
few method optimization by using the class private vector3d directly, and also fix the clone method
1 parent 84dd884 commit d934ca5

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

packages/melonjs/src/math/observableVector3d.ts

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { TupleToUnion } from "type-fest";
2-
import { clamp } from "./math";
32
import { Vector2d } from "./vector2d";
4-
import { Vector3d, vector3dPool } from "./vector3d";
3+
import { Vector3d } from "./vector3d";
54
import { createPool } from "../system/pool.ts";
65
import { Point } from "../geometries/point.ts";
76

@@ -422,7 +421,7 @@ export class ObservableVector3d {
422421
* @returns The dot product.
423422
*/
424423
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);
426425
}
427426

428427
/**
@@ -492,9 +491,11 @@ export class ObservableVector3d {
492491
return target;
493492
}
494493

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+
);
498499
return this;
499500
}
500501

@@ -504,10 +505,7 @@ export class ObservableVector3d {
504505
* @returns distance
505506
*/
506507
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);
511509
}
512510

513511
/**
@@ -516,7 +514,7 @@ export class ObservableVector3d {
516514
* @returns angle in radians
517515
*/
518516
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);
520518
}
521519

522520
/**
@@ -542,18 +540,19 @@ export class ObservableVector3d {
542540

543541
/**
544542
* return a clone copy of this vector
543+
* @param [cb] callback function to override the clone values
545544
* @returns new Vector3d
546545
*/
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);
549548
}
550549

551550
/**
552551
* convert the object to a string representation
553552
* @returns stringified representation
554553
*/
555554
toString() {
556-
return `x:${this.x},y:${this.y},z:${this.z}` as const;
555+
return this._vector3d.toString();
557556
}
558557

559558
/**

packages/melonjs/tests/obsvervableVector3d.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ describe("ObservableVector3d : constructor", () => {
2222
expect(a.toString()).toEqual("x:0,y:0,z:0");
2323
});
2424

25-
it("creates a new ObservablePoint instance with specified values", () => {
25+
it("creates a new ObservableVector3d instance with specified values", () => {
2626
const observableVector = new ObservableVector3d(10, 20, 3);
2727
expect(observableVector.x).toEqual(10);
2828
expect(observableVector.y).toEqual(20);
2929
expect(observableVector.z).toEqual(3);
3030
});
3131

32-
it("values can be compared with a Point object", () => {
32+
it("values can be compared with an other ObservableVector3d object", () => {
3333
const observableVector = new ObservableVector3d(10, 20, 3);
3434
const vector3 = new Vector3d(10, 20, 3);
3535
expect(observableVector.equals(vector3)).toEqual(true);

0 commit comments

Comments
 (0)