I admit, I’m not particularly optimistic whether this is possible, but here goes.
I have a fig, ax
, which is an Axis/Axis3
plotted on a Figure
. On this axis many things are plotted, and many of the plotted things are observables linked to whatever animation pipeline. Now, from a different figure I have fig2, ax2
. Is it possible to transfer everything in ax
to ax2
, using only fig, ax, fig2, ax2
as arguments, so that whenever I trigger whatever animation update pipeline, ax2
gets updated?
(Yes, I understand that I could “just plot directly to ax2”, but given my setup, it would save me a large amout of work to be able to make the transfer. additionally, if you use packages that provide animation infastructure such as InteractiveDynamics.jl, then you’d have to change their source to achieve that)