mc-beta-server/server/Vec3.ts

41 lines
941 B
TypeScript
Raw Normal View History

2023-04-10 14:42:14 +01:00
export class Vec3 {
public x:number;
public y:number;
public z:number;
2023-11-02 08:31:43 +00:00
public constructor(x?:Vec3 | number, y?:number, z?:number) {
2023-04-10 14:42:14 +01:00
if (typeof(x) === "number" && typeof(y) === "number" && typeof(z) === "number") {
this.x = x;
this.y = y;
this.z = z;
} else if (typeof(x) === "number" && typeof(y) !== "number" && typeof(z) !== "number") {
this.x = x;
this.y = x;
this.z = x;
2023-11-02 08:31:43 +00:00
} else if (x instanceof Vec3) {
this.x = x.x;
this.y = x.y;
this.z = x.z;
2023-04-10 14:42:14 +01:00
} else {
this.x = this.y = this.z = 0;
}
}
2023-04-10 21:52:30 +01:00
2023-11-05 10:56:28 +00:00
public get isZero() {
return this.x === 0 && this.y === 0 && this.z === 0;
}
2023-11-02 08:31:43 +00:00
public set(x?:Vec3 | number, y?:number, z?:number) {
if (x instanceof Vec3) {
this.x = x.x;
this.y = x.y;
this.z = x.z;
} else if (typeof(x) === "number" && typeof(y) === "number" && typeof(z) === "number") {
this.x = x;
this.y = y;
this.z = z;
} else {
this.x = this.y = this.z = 0;
}
2023-04-10 21:52:30 +01:00
}
2023-04-10 14:42:14 +01:00
}