I have a Java array defined already e.g.
float[] values = new float[3];
I would like to do something like this further on in the code:
You may use a local variable, like:
float[] values = new float[3]; float[] v = {0.1f, 0.2f, 0.3f}; float[] values = v;