Prints a vector to the quake console.
(String in, float arr[])
| 188 | |
| 189 | /** Prints a vector to the quake console. */ |
| 190 | public static void printv(String in, float arr[]) { |
| 191 | for (int n = 0; n < arr.length; n++) { |
| 192 | Com.Println(in + "[" + n + "]: " + arr[n]); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | static final byte nullfiller[] = new byte[8192]; |
| 197 |