hello,
I posted some questions here: http://processing.org/discourse/yabb_beta/YaBB.cgi?board=LibraryProblems;action=display;num=1198009655
Probably, my mind wasn't advanced/experienced enough in this little work.
I went further.
But I need some ideas again.
I need to build a network/graph.
I could divide the job in 2 steps or not
2 steps= collect data (I mean, collect XML file and build a structure, a kind of array of arrays etc) + explore the structure previously built and progressively build the graph/network.
How could I do that with processing ? I mean, how could i do that real-time?
I can summarize:
I have a seed (=a name of user)
I can have this user xml file in which all his friends are stored.
I begin to build the structure:
first element = [ (username1) - [ (friend1 - strongnessOfFriendship) - (friend2 - strongnessOfFriendship)] - etc etc etc ]
I'd like to do the same for all friends of the first element
and keep going on etc etc
each process generates a new generation i.e a new depth in the graph.
I need to build link too but it could be done while exploring for drawing nodes, I guess.
any ideas, experiencies ?
I may have big lack of experiencies in coding,hashing etc