8000 get_clip_path checks for nan by leejjoon · Pull Request #11748 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

get_clip_path checks for nan #11748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lib/matplotlib/backend_bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,12 @@ def get_clip_path(self):
an affine transform to apply to the path before clipping.
"""
if self._clippath is not None:
return self._clippath.get_transformed_path_and_affine()
tpath, tr = self._clippath.get_transformed_path_and_affine()
if np.all(np.isfinite(tpath.vertices)):
return tpath, tr
else:
_log.warning("Ill-defined clip_path detected. Returning None.")
return None, None
return None, None

def get_dashes(self):
Expand Down
0