()
| 69297 | return true; |
| 69298 | } |
| 69299 | negate() { |
| 69300 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = -this[i]; |
| 69301 | return this.check(); |
| 69302 | } |
| 69303 | lerp(a, b, t) { |
| 69304 | if (t === undefined) return this.lerp(this, a, b); |
| 69305 | for(let i = 0; i < this.ELEMENTS; ++i){ |
no test coverage detected