(other)
| 419 | return other.sub(this).div(2).add(this); |
| 420 | } |
| 421 | eq(other) { |
| 422 | return this.x === other.x && this.y === other.y && this.z === other.z; |
| 423 | } |
| 424 | isFinite() { |
| 425 | return isFinite(this.x) && isFinite(this.y) && isFinite(this.z); |
| 426 | } |
nothing calls this directly
no outgoing calls
no test coverage detected