()
| 610 | return `Vector4 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]}, w: ${this[3]} }`; |
| 611 | } |
| 612 | toArray() { |
| 613 | return [ |
| 614 | this[0], |
| 615 | this[1], |
| 616 | this[2], |
| 617 | this[3] |
| 618 | ]; |
| 619 | } |
| 620 | toFloat32Array() { |
| 621 | return this.#internal; |
| 622 | } |
nothing calls this directly
no outgoing calls
no test coverage detected