(...vectors)
| 69321 | return this.check(); |
| 69322 | } |
| 69323 | add(...vectors) { |
| 69324 | for (const vector of vectors)for(let i = 0; i < this.ELEMENTS; ++i)this[i] += vector[i]; |
| 69325 | return this.check(); |
| 69326 | } |
| 69327 | subtract(...vectors) { |
| 69328 | for (const vector of vectors)for(let i = 0; i < this.ELEMENTS; ++i)this[i] -= vector[i]; |
| 69329 | return this.check(); |