Determines the behavior for mapping values outside the range ``[vmin, vmax]``. See the *clip* parameter in `.Normalize`.
(self)
| 2331 | @property |
| 2332 | @abstractmethod |
| 2333 | def clip(self): |
| 2334 | """ |
| 2335 | Determines the behavior for mapping values outside the range ``[vmin, vmax]``. |
| 2336 | |
| 2337 | See the *clip* parameter in `.Normalize`. |
| 2338 | """ |
| 2339 | pass |
| 2340 | |
| 2341 | @abstractmethod |
| 2342 | def __call__(self, value, clip=None): |
no outgoing calls