SignalView
This library lets you visualize the signal graph of Reactive's signals.
It's using GLVisualize for the visualization and GraphLayout to layout the signal graph.
You can interactively edit some nodes like colors and numbers.
TODO: Interactively edit the graph layout and let user resize and annotate nodes.
API
# create any kind of signal graph
using Reactive, SignalView, GLVisualize
a = Signal(2)
b = Signal(1)
c = map(+, a, b)
# view it
window = glscreen()
# any signal in the graph will do, since both parents and children will get pushed into graph recursevely
view_signal(a, window)
renderloop(window)