(out, a, m)
| 70156 | return out; |
| 70157 | } |
| 70158 | function vec4_transformMat2(out, a, m) { |
| 70159 | const x = a[0]; |
| 70160 | const y = a[1]; |
| 70161 | out[0] = m[0] * x + m[2] * y; |
| 70162 | out[1] = m[1] * x + m[3] * y; |
| 70163 | out[2] = a[2]; |
| 70164 | out[3] = a[3]; |
| 70165 | return out; |
| 70166 | } |
| 70167 | function vec4_transformMat3(out, a, m) { |
| 70168 | const x = a[0]; |
| 70169 | const y = a[1]; |
nothing calls this directly
no outgoing calls
no test coverage detected