Description
Problem
do_3d_projection() reorders vertices of various 3D collection artists in z-depth. Once the drawing is done, it would be useful to restore back the original order, so that e.g. interactive tools (mplcursors) reporting the index of a picked collection member get the original index as set by the user (anntzer/mplcursors#49). This should be reasonably cheap to do as we can probably just stash the original arrays somewhere and restore them as attributes at the end.
In practice, this probably means adding another API like doing_3d_projection()
which returns a contextmanager (or letting do_3d_projection()
possibly return a contextmanager and doing a typecheck on that) and replacing the calls to do_3d_projection()
to stack.enter_context(artist.doing_3d_projection())
where stack = ExitStack()
is defined at the top of Axes3D.draw()
.
Proposed solution
No response