Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Add a helper to copy a colormap and set its extreme colors.#14645
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
`.Colormap.set_extremes` and `.Colormap.with_extremes` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I think we've decided not to put links in section titles for aestethic reasons. But I'm going to merge as is. I'll anyway do a small colormap-related cleanup PR and will update there. While that's a bit of a messy way of working it saves us an extra review roundtrip here. | ||
`````````````````````````````````````````````````````` | ||
Because the `.Colormap.set_bad`, `.Colormap.set_under` and `.Colormap.set_over` | ||
methods modify the colormap in place, the user must be careful to first make a | ||
copy of the colormap if setting the extreme colors e.g. for a builtin colormap. | ||
The new ``Colormap.with_extremes(bad=..., under=..., over=...)`` can be used to | ||
first copy the colormap and set the extreme colors on that copy. | ||
The new `.Colormap.set_extremes` method is provided for API symmetry with | ||
`.Colormap.with_extremes`, but note that it suffers from the same issue as the | ||
earlier individual setters. |