I am using plot_surface to create the following graph
surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.jet,
linewidth=0, antialiased=True, shade=False)
I want to be able to add in some indication of where the z-axis zero-plane intersects the surface. That is every point on the surface which is Am3+Ae3 = 0 or nearest Am3+Ae3 = 0.
Is there some function that will do this in matplotlib, or perhaps some way to make cmap show a very defined black around that zero value?
Thanks for any help.