### Bug summary 3D bar chart unexpected behavior when using `axlim_clip` When I want to use `axlim_clip` to fix #29482, I find its unexpected behavior. Clip the data to the axes view limits: https://matplotlib.org/stable/gallery/mplot3d/axlim_clip.html ### Code for reproduction ```Python import matplotlib.pyplot as plt fig, ax = plt.subplots(subplot_kw = {"projection" : "3d"}) ax.bar3d([1, 1, 2, 2], [1, 2, 1, 2], 0, 1, 1, [2, 3, 1, 4], axlim_clip=True) ax.set_zlim(2, 4) plt.show() ``` ### Actual outcome <img width="640" height="480" alt="Image" src="https://github.com/user-attachments/assets/d088c12e-ca6c-4f74-977b-b4e82818c6dd" /> ### Expected outcome <img width="415" height="385" alt="Image" src="https://github.com/user-attachments/assets/eeae73a6-33fd-4045-bcdb-875bce48933e" /> from #29482 ### Additional information _No response_ ### Operating system OS/X ### Matplotlib Version 3.11.0.dev1302+g4c817b820 ### Matplotlib Backend macosx ### Python version 3.12.11 ### Jupyter version _No response_ ### Installation git checkout