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 ca129ae commit 872818bCopy full SHA for 872818b
lib/mpl_toolkits/mplot3d/art3d.py
@@ -650,8 +650,8 @@ def do_3d_projection(self, renderer):
650
651
face_z = self._zsortfunc(psegments[..., 2], axis=-1)
652
if isinstance(face_z, np.ma.MaskedArray):
653
- # NOTE: Unpacking .data is safe here, because every face has to contain
654
- # a valid vertex.
+ # NOTE: Unpacking .data is safe here, because every face has to
+ # contain a valid vertex.
655
face_z = face_z.data
656
face_order = np.argsort(face_z, axis=-1)[::-1]
657
0 commit comments