(scalar)
| 69361 | return this.addScalar(-a); |
| 69362 | } |
| 69363 | multiplyScalar(scalar) { |
| 69364 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] *= scalar; |
| 69365 | return this.check(); |
| 69366 | } |
| 69367 | divideScalar(a) { |
| 69368 | return this.multiplyByScalar(1 / a); |
| 69369 | } |