(vector)
| 69313 | return this.check(); |
| 69314 | } |
| 69315 | max(vector) { |
| 69316 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.max(vector[i], this[i]); |
| 69317 | return this.check(); |
| 69318 | } |
| 69319 | clamp(minVector, maxVector) { |
| 69320 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.min(Math.max(this[i], minVector[i]), maxVector[i]); |
| 69321 | return this.check(); |
no test coverage detected