Hello everybody!
I have had a bit of programming experience with C++ but found it very hard to make anything else then simple “command line applications” with it.
So looking for some “beginner friendly GUI stuff”, I came across processing.
So far I have written some small programms, messing around with creating simple GUIs and stuff like that.
But there is one thing that seems to be “missing”.
Vectors!
I mean there is the PVector thing, but that is like an actual “vector” as in it has a value and a direction.
I mean the “dynamic array” thing that is called vector.
Is there such a thing?
Yes, I know about “Table” and that that is basically like a dynamic 2D array (you can add cols / rows during runtime).
But you can’t use custom classes /objects with that!
So, am I missing something obvious or is there no such thing in processing?
If that is the case, what else are you supposed to use to do things like handle multiple values in a dynamic array?