I'm writting some code that needs to store some data like this:
double[] VERTS = {
0.000000, -7.350000, 21.750000,
0.000000, -9.145293, 21.750000
}
However, I want the double[] VERTS array to be in an external file. Is this possible?
EDIT: And how can I read it back?
Thanks in advance.