(out, a, m)
| 70148 | return out; |
| 70149 | } |
| 70150 | function vec3_transformMat2(out, a, m) { |
| 70151 | const x = a[0]; |
| 70152 | const y = a[1]; |
| 70153 | out[0] = m[0] * x + m[2] * y; |
| 70154 | out[1] = m[1] * x + m[3] * y; |
| 70155 | out[2] = a[2]; |
| 70156 | return out; |
| 70157 | } |
| 70158 | function vec4_transformMat2(out, a, m) { |
| 70159 | const x = a[0]; |
| 70160 | const y = a[1]; |
nothing calls this directly
no outgoing calls
no test coverage detected