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 cc85fb6 commit d61cedaCopy full SHA for d61ceda
1 file changed
lib/matplotlib/collections.py
@@ -322,7 +322,7 @@ def _prepare_points(self):
322
paths.append(mpath.Path(np.column_stack([xs, ys]), path.codes))
323
xs = self.convert_xunits(offsets[:, 0])
324
ys = self.convert_yunits(offsets[:, 1])
325
- offsets = np.column_stack([xs, ys])
+ offsets = np.ma.column_stack([xs, ys])
326
327
if not transform.is_affine:
328
paths = [transform.transform_path_non_affine(path)
0 commit comments