(w1)
| 425 | return isFinite(this.x) && isFinite(this.y) && isFinite(this.z); |
| 426 | } |
| 427 | extend(w1) { |
| 428 | return new Vector4(this.x, this.y, this.z, w1); |
| 429 | } |
| 430 | toHomogeneous() { |
| 431 | return this.extend(1); |
| 432 | } |
no outgoing calls
no test coverage detected