()
| 434 | return `Vector3 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]} }`; |
| 435 | } |
| 436 | toArray() { |
| 437 | return [ |
| 438 | this[0], |
| 439 | this[1], |
| 440 | this[2] |
| 441 | ]; |
| 442 | } |
| 443 | toFloat32Array() { |
| 444 | return this.#internal; |
| 445 | } |
nothing calls this directly
no outgoing calls
no test coverage detected