(x, y, z, w2)
| 507 | return new Vector4(1); |
| 508 | } |
| 509 | constructor(x, y, z, w2){ |
| 510 | if (x !== undefined) { |
| 511 | this.x = x; |
| 512 | this.y = y ?? x; |
| 513 | this.z = z ?? x; |
| 514 | this.w = w2 ?? x; |
| 515 | } |
| 516 | } |
| 517 | clone() { |
| 518 | return new Vector4(this.x, this.y, this.z, this.w); |
| 519 | } |
nothing calls this directly
no outgoing calls
no test coverage detected