You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unneeded _update_transScale calls in _init_axis.
_init_axis is called only in the Axes constructor, where it is followed
by a call to clear, which itself already calls _update_transScale (which
is needed to take into account the axis scales that get set in it). So
_init_axis doesn't need to call _update_transScale itself. Removing it
avoids showcasing a private method in the custom_projection demo, and
helps moving towards a system where updating an axis scale directly
invalidates whatever is necessary (e.g. via a TransformWrapper) instead
of requiring manual invalidation calls (i.e. _update_transScale).
0 commit comments