(vector: number[])
| 45 | } |
| 46 | |
| 47 | static squaredMagnitude(vector: number[]) { |
| 48 | const [x, y, z] = vector; |
| 49 | return x * x + y * y + z * z; |
| 50 | } |
| 51 | |
| 52 | static add(...vectors: number[][]) { |
| 53 | const result = [0, 0, 0]; |
nothing calls this directly
no outgoing calls
no test coverage detected