Spaces:
Running
Running
File size: 4,516 Bytes
352fb85 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
import { Matrix4 } from "./Matrix4";
class Vector3 {
public readonly x: number;
public readonly y: number;
public readonly z: number;
constructor(x: number = 0, y: number = 0, z: number = 0) {
this.x = x;
this.y = y;
this.z = z;
}
equals(v: Vector3): boolean {
if (this.x !== v.x) {
return false;
}
if (this.y !== v.y) {
return false;
}
if (this.z !== v.z) {
return false;
}
return true;
}
add(v: number): Vector3;
add(v: Vector3): Vector3;
add(v: number | Vector3): Vector3 {
if (typeof v === "number") {
return new Vector3(this.x + v, this.y + v, this.z + v);
} else {
return new Vector3(this.x + v.x, this.y + v.y, this.z + v.z);
}
}
subtract(v: number): Vector3;
subtract(v: Vector3): Vector3;
subtract(v: number | Vector3): Vector3 {
if (typeof v === "number") {
return new Vector3(this.x - v, this.y - v, this.z - v);
} else {
return new Vector3(this.x - v.x, this.y - v.y, this.z - v.z);
}
}
multiply(v: number): Vector3;
multiply(v: Vector3): Vector3;
multiply(v: Matrix4): Vector3;
multiply(v: number | Vector3 | Matrix4): Vector3 {
if (typeof v === "number") {
return new Vector3(this.x * v, this.y * v, this.z * v);
} else if (v instanceof Vector3) {
return new Vector3(this.x * v.x, this.y * v.y, this.z * v.z);
} else {
return new Vector3(
this.x * v.buffer[0] + this.y * v.buffer[4] + this.z * v.buffer[8] + v.buffer[12],
this.x * v.buffer[1] + this.y * v.buffer[5] + this.z * v.buffer[9] + v.buffer[13],
this.x * v.buffer[2] + this.y * v.buffer[6] + this.z * v.buffer[10] + v.buffer[14],
);
}
}
divide(v: number): Vector3;
divide(v: Vector3): Vector3;
divide(v: number | Vector3): Vector3 {
if (typeof v === "number") {
return new Vector3(this.x / v, this.y / v, this.z / v);
} else {
return new Vector3(this.x / v.x, this.y / v.y, this.z / v.z);
}
}
cross(v: Vector3): Vector3 {
const x = this.y * v.z - this.z * v.y;
const y = this.z * v.x - this.x * v.z;
const z = this.x * v.y - this.y * v.x;
return new Vector3(x, y, z);
}
dot(v: Vector3): number {
return this.x * v.x + this.y * v.y + this.z * v.z;
}
lerp(v: Vector3, t: number): Vector3 {
return new Vector3(this.x + (v.x - this.x) * t, this.y + (v.y - this.y) * t, this.z + (v.z - this.z) * t);
}
min(v: Vector3): Vector3 {
return new Vector3(Math.min(this.x, v.x), Math.min(this.y, v.y), Math.min(this.z, v.z));
}
max(v: Vector3): Vector3 {
return new Vector3(Math.max(this.x, v.x), Math.max(this.y, v.y), Math.max(this.z, v.z));
}
getComponent(axis: number) {
switch (axis) {
case 0:
return this.x;
case 1:
return this.y;
case 2:
return this.z;
default:
throw new Error(`Invalid component index: ${axis}`);
}
}
minComponent(): number {
if (this.x < this.y && this.x < this.z) {
return 0;
} else if (this.y < this.z) {
return 1;
} else {
return 2;
}
}
maxComponent(): number {
if (this.x > this.y && this.x > this.z) {
return 0;
} else if (this.y > this.z) {
return 1;
} else {
return 2;
}
}
magnitude(): number {
return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);
}
distanceTo(v: Vector3): number {
return Math.sqrt((this.x - v.x) ** 2 + (this.y - v.y) ** 2 + (this.z - v.z) ** 2);
}
normalize(): Vector3 {
const length = this.magnitude();
return new Vector3(this.x / length, this.y / length, this.z / length);
}
flat(): number[] {
return [this.x, this.y, this.z];
}
clone(): Vector3 {
return new Vector3(this.x, this.y, this.z);
}
toString(): string {
return `[${this.flat().join(", ")}]`;
}
static One(value: number = 1): Vector3 {
return new Vector3(value, value, value);
}
}
export { Vector3 };
|