(other)
| 375 | return this.add(other.sub(this).mul(alpha)); |
| 376 | } |
| 377 | set(other) { |
| 378 | this.x = other.x; |
| 379 | this.y = other.y; |
| 380 | this.z = other.z; |
| 381 | return this; |
| 382 | } |
| 383 | add(other) { |
| 384 | const { x , y , z } = typeof other === "number" ? { |
| 385 | x: other, |
no outgoing calls
no test coverage detected