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
Fix Line3DCollection with autolim=True for lines of different lengths (#30423)
* Fix Line3DCollection with autolim=True for lines of different lengths
When using Line3DCollection with autolim=True, the code was trying to
convert ragged arrays (lines with different numbers of points) directly
to a numpy array, which would fail. This fix extracts coordinates
separately to avoid the issue.
Fixes#30418
* fix lint
* fix lint
* Add test for Line3DCollection with autolim=True and ragged arrays
* move test
* Update lib/mpl_toolkits/mplot3d/tests/test_axes3d.py
Co-authored-by: Elliott Sales de Andrade <[email protected]>
* Update lib/mpl_toolkits/mplot3d/tests/test_axes3d.py
Co-authored-by: Elliott Sales de Andrade <[email protected]>
---------
Co-authored-by: Elliott Sales de Andrade <[email protected]>
0 commit comments