I have various components in the application. I have a requirement where I need to create graph(AudioProcessorGraph) of graphs(AudioProcessorGraph). Is it possible to create graph of graphs or do i need to get the nodes from child graphs and wire them into the final graph.
I just implemented a (very) simple graph (ArazGraph) class which could be used in various places. I have it committed to github: https://github.com/arabed/ArazGraph
Let me know if you have any comments or suggestions to improve it!
Your graph seems to be a data plot graph. The topic of this forum thread is a graph data structure which is a very different thing. In Juce there is the AudioProcessorGraph which is used to connect together AudioProcessor objects. It’s not a visual/GUI thing at all as such.