4x4 matrix debug output
| 36 | |
| 37 | //4x4 matrix debug output |
| 38 | void mat_debug(float mat[4][4], int y_offset) { |
| 39 | for (int y = 0; y < 4; y++) { |
| 40 | for (int x = 0; x < 4; x++){ |
| 41 | text(str(mat[y][x], 2), x * 30, y * 10 + y_offset); |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | void mat_debug_fixed_point(int32_t mat[4][4], int y_offset) { |
| 47 | for (int y = 0; y < 4; y++) { |
nothing calls this directly
no outgoing calls
no test coverage detected