(...vectors)
| 69187 | return this.check(); |
| 69188 | } |
| 69189 | multiply(...vectors) { |
| 69190 | for (const vector of vectors)for(let i = 0; i < this.ELEMENTS; ++i)this[i] *= vector[i]; |
| 69191 | return this.check(); |
| 69192 | } |
| 69193 | divide(...vectors) { |
| 69194 | for (const vector of vectors)for(let i = 0; i < this.ELEMENTS; ++i)this[i] /= vector[i]; |
| 69195 | return this.check(); |
no test coverage detected