I am trying to compare two meshes coming from two versions of the same numerical code. I would like to place both in the same axis of the same figure, but in the figure I can see just one of them, namely the last one plotted. Is it possible in matplotlib to superimpose two meshes using pyplot.triplot()?
I tried to plot them using two subsequent calls to pyplot.triplot() as one would do when plotting lines with pyplot.plot(). In the last case all the lines fall into the same axis, but using pyplot.triplot() only the last mesh is displayed.