()
| 413 | return new Vector3(this.x / x, this.y / y, this.z / z); |
| 414 | } |
| 415 | neg() { |
| 416 | return new Vector3(-this.x, -this.y, -this.z); |
| 417 | } |
| 418 | midpoint(other) { |
| 419 | return other.sub(this).div(2).add(this); |
| 420 | } |
nothing calls this directly
no outgoing calls
no test coverage detected