(m, i)
| 9 | } |
| 10 | |
| 11 | set(m, i) { |
| 12 | if (i === 0) Mat3.set(m, this.mats[0]); |
| 13 | else Mat3.multiply(this.mats[i - 1], m, this.mats[i]); |
| 14 | |
| 15 | this.size = Math.max(this.size, i + 1); |
| 16 | } |
| 17 | |
| 18 | push(m) { |
| 19 | if (this.size === 0) Mat3.set(m, this.mats[0]); |
no outgoing calls
no test coverage detected