Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Milestone
Description
If you docm2 = copy.copy(cm)
and the original color map has been used at least once, then the copy will share a reference toself._lut
(which is what is used to__call__
to map from values -> rgba). Any calls toset_over
,set_under
, orset_bad
will be shared by all copies (as they updateself._lut
in place).