For me Facebook its full of adverts and suggest post from groups I'm not part of, most of which are AI generated images and/or clickbait headlines. Plus Reels which I don't want to watch.
That's the point I'm trying to make. I pay for YouTube, I should be able to choose that i don't want to watch shorts, for instance. A few days ago whenever they suggest shorts in my feed, there was a "not interested" button. It's gone now
"When someone interacts with the graphics, for example by trying to drag an element to a new position, g9 optimizes over the space of possible values for your data to find a set of values that comes closest to creating the change."
This clearly isn't trying to be Processing. Obviously it's not revolutionary in terms of being productive, but it's a super cool concept and seems unique to me! The dragon example is particularly telling. You can grab any node and it tries to fit the fractal to wherever you move it.
P5 has an imperative/immediate mode style of graphics API so you have to code the result of your interactivity (moving a point, etc.) yourself. Something like three.js, which has a full scene graph for rendering and interactivity, might be a better choice if you want a lot of interactivity out of the box.
I'm kinda scratching my head at g9 as it seems to be a mish mash of scene graph that's implicitly generated and imperative rendering APIs. It's not exactly clear to me why you'd want this mix except for very specific scenarios the author created support for with their implicit scene graph generation for interactivity.
In my mind you either want something that's like three.js with a full scene graph style of rendering and interactivity, or a p5 style imperative API for both. This seems to be some in-between thing to scratch some itches.
Yes, I understand what is happening here with interactivity. Like I said I don't follow why I want some implicit generation of an interactivity scene graph (i.e. what points are connected or move relative to other points) when I can just be explicit about the scene graph interactivity with other similar libraries.
It's 20 minutes of changing graphics. You could code all of that with P5, and it would be an excruciatingly long process. G9.js would get you there in a fraction of the time.
I was curious too, took a little bit of digging :)
"the original domain of [P]rocessing was proce55ing.net, so people used to sometimes refer to processing as proce55ing or P5 or p5 for short. they still do sometimes. p5.js is a reference to that."