()
| 761 | return `Vector2 { x: ${this[0]}, y: ${this[1]} }`; |
| 762 | } |
| 763 | toArray() { |
| 764 | return [ |
| 765 | this[0], |
| 766 | this[1] |
| 767 | ]; |
| 768 | } |
| 769 | toFloat32Array() { |
| 770 | return this.#internal; |
| 771 | } |
nothing calls this directly
no outgoing calls
no test coverage detected