| 22 | super().__init__("\\ding{55}") |
| 23 | |
| 24 | class AlgoText(Text): |
| 25 | CONFIG = { |
| 26 | "color": WHITE, |
| 27 | } |
| 28 | |
| 29 | def __init__(self, text, **kwargs): |
| 30 | super().__init__(text, **kwargs) |
| 31 | self.scale(0.6) |
| 32 | |
| 33 | class AlgoPropertyPanel(AlgoVGroup): |
| 34 | def __init__(self, scene, text_list, **kwargs): |
no outgoing calls
no test coverage detected