Return the values (min, max) that are mapped to the colormap limits.
(self)
| 275 | self.norm.callbacks.process('changed') |
| 276 | |
| 277 | def get_clim(self): |
| 278 | """ |
| 279 | Return the values (min, max) that are mapped to the colormap limits. |
| 280 | """ |
| 281 | return self.norm.vmin, self.norm.vmax |
| 282 | |
| 283 | def changed(self): |
| 284 | """ |
no outgoing calls