(self)
| 81 | self.range = (0, 255) |
| 82 | |
| 83 | def on_cmap(self): |
| 84 | ips = IPy.get_ips() |
| 85 | if ips is None: return |
| 86 | cmap = CMapPanel.linear_color(self.cmap.GetValue()) |
| 87 | ips.lut = cmap |
| 88 | ips.update() |
| 89 | |
| 90 | def on_cmapsel(self, event): |
| 91 | ips = IPy.get_ips() |
nothing calls this directly
no test coverage detected