| 142 | |
| 143 | template <int N> |
| 144 | static void OutputArray(const char* name, float (&p)[N], int indent) |
| 145 | { |
| 146 | OutputIndent(indent); |
| 147 | printf("%s: ", name); |
| 148 | for (int i = 0; i < N; ++i) |
| 149 | { |
| 150 | printf("%.3f", p[i]); |
| 151 | if (i < (N-1)) |
| 152 | printf(", "); |
| 153 | } |
| 154 | printf("\n"); |
| 155 | } |
| 156 | |
| 157 | template<typename T> |
| 158 | static void OutputValue(const char* name, T value, int indent) |
no test coverage detected