Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ff208 commit 80a5a95Copy full SHA for 80a5a95
lib/mpl_toolkits/mplot3d/art3d.py
@@ -402,7 +402,8 @@ def do_3d_projection(self):
402
"""Project the points according to renderer matrix."""
403
vs_list = [vs for vs, _ in self._3dverts_codes]
404
if self._axlim_clip:
405
- vs_list = [np.ma.row_stack(_viewlim_mask(*vs.T, self.axes)).T
+ vs_list = [np.ma.array(vs, mask=np.broadcast_to(
406
+ _viewlim_mask(*vs.T, self.axes), vs.shape))
407
for vs in vs_list]
408
xyzs_list = [proj3d.proj_transform(*vs.T, self.axes.M) for vs in vs_list]
409
self._paths = [mpath.Path(np.ma.column_stack([xs, ys]), cs)
0 commit comments