(a)
| 74782 | return this.check(); |
| 74783 | } |
| 74784 | multiplyLeft(a) { |
| 74785 | _quat.multiply(this, a, this); |
| 74786 | return this.check(); |
| 74787 | } |
| 74788 | normalize() { |
| 74789 | const length = this.len(); |
| 74790 | const l = length > 0 ? 1 / length : 0; |
no test coverage detected