(other)
| 601 | return other.sub(this).div(2).add(this); |
| 602 | } |
| 603 | eq(other) { |
| 604 | return this.x === other.x && this.y === other.y && this.z === other.z && this.w === other.w; |
| 605 | } |
| 606 | isFinite() { |
| 607 | return isFinite(this.x) && isFinite(this.y) && isFinite(this.z) && isFinite(this.w); |
| 608 | } |
nothing calls this directly
no outgoing calls
no test coverage detected