(out)
| 71624 | return out; |
| 71625 | } |
| 71626 | function identity(out) { |
| 71627 | out[0] = 1; |
| 71628 | out[1] = 0; |
| 71629 | out[2] = 0; |
| 71630 | out[3] = 0; |
| 71631 | out[4] = 1; |
| 71632 | out[5] = 0; |
| 71633 | out[6] = 0; |
| 71634 | out[7] = 0; |
| 71635 | out[8] = 1; |
| 71636 | return out; |
| 71637 | } |
| 71638 | function transpose(out, a) { |
| 71639 | // If we are transposing ourselves we can skip a few steps but have to cache some values |
| 71640 | if (out === a) { |