Converts a vector to a string.
(float[] v)
| 41 | |
| 42 | /** Converts a vector to a string. */ |
| 43 | public static String vtos(float[] v) { |
| 44 | return (int) v[0] + " " + (int) v[1] + " " + (int) v[2]; |
| 45 | } |
| 46 | |
| 47 | /** Converts a vector to a string. */ |
| 48 | public static String vtofs(float[] v) { |
no outgoing calls
no test coverage detected