MCPcopy Create free account
hub / github.com/demoth/jake2 / printv

Method printv

qcommon/src/main/java/jake2/qcommon/util/Lib.java:190–194  ·  view source on GitHub ↗

Prints a vector to the quake console.

(String in, float arr[])

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

PrintlnMethod · 0.95

Tested by

no test coverage detected