()
| 1664 | this.vector = vector ?? Vector3.zero(); |
| 1665 | } |
| 1666 | clone() { |
| 1667 | return new Quaternion(this.scalar, this.vector); |
| 1668 | } |
| 1669 | mag() { |
| 1670 | return Math.hypot(this.scalar, this.vector.x, this.vector.y, this.vector.z); |
| 1671 | } |
nothing calls this directly
no outgoing calls
no test coverage detected