In my wishful thinking, the black line from (0, 0, 1) to (1, 0, 1) should be completely visible.
What should I do to get a sensible graph?
My mwe
In [37]: import numpy as np
...: import matplotlib.pyplot as plt
...:
...: fig, ax = plt.subplots(subplot_kw=dict(projection="3d"), constrained_layout=1)
...:
...: x = y = np.linspace(0, 1, 11)
...: X, Y = np.meshgrid(x, y)
...: Z = X+Y
...:
...: ax.plot_surface(X, Y, Z)
...: ax.plot3D([0,1,1,0,0],[0,0,1,1,0],[1,1,1,1,1], color='k', lw=3)
...: plt.show()


