(a)
| 69350 | return this.subtract(a); |
| 69351 | } |
| 69352 | setScalar(a) { |
| 69353 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = a; |
| 69354 | return this.check(); |
| 69355 | } |
| 69356 | addScalar(a) { |
| 69357 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] += a; |
| 69358 | return this.check(); |