(out, a, m)
| 70010 | return out; |
| 70011 | } |
| 70012 | function transformMat3(out, a, m) { |
| 70013 | var x = a[0], y = a[1]; |
| 70014 | out[0] = m[0] * x + m[3] * y + m[6]; |
| 70015 | out[1] = m[1] * x + m[4] * y + m[7]; |
| 70016 | return out; |
| 70017 | } |
| 70018 | function transformMat4(out, a, m) { |
| 70019 | var x = a[0]; |
| 70020 | var y = a[1]; |
nothing calls this directly
no outgoing calls
no test coverage detected