Oh wow. Okay, that clears up some confusion, and adds more at the same time. For those lagging a bit behind (like myself), I found this helped on a basic level. http://www.janeg.ca/scjp/oper/cast.html
Alright, so just to make clear, in this case the vector information from one object to another (making explicit). To just clarify my understanding:
I'm working on another project where I'm storing float point numbers based on a series of jitter calculations in max/msp/jitter, and they're being stored in a text file.
Doing the visualization in processing, I am extracting the full string from the text file, breaking it up by line, then " " deliniation.
Instead of using functions to convert string to float or int, can I instead just do something like the following? (The syntax is kinda messy/wrongish... can I even do that with arrays?)
Code:
string[] storeslines;;;;;;
Float[][] d = new float d[storelines.length][5];
for(int i=0;i<data.length;i++){
d[i][] = (float[])split(storeslines[i]," ");
}