()
| 607 | return isFinite(this.x) && isFinite(this.y) && isFinite(this.z) && isFinite(this.w); |
| 608 | } |
| 609 | toString() { |
| 610 | return `Vector4 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]}, w: ${this[3]} }`; |
| 611 | } |
| 612 | toArray() { |
| 613 | return [ |
| 614 | this[0], |
nothing calls this directly
no outgoing calls
no test coverage detected