(self, **kwargs)
| 2 | |
| 3 | class QuickSort(AlgoScene): |
| 4 | def __init__(self, **kwargs): |
| 5 | super().__init__(**kwargs) |
| 6 | self.partition_time = 0 |
| 7 | self.low_arrow = None |
| 8 | self.current_arrow = None |
| 9 | random.seed(1) |
| 10 | |
| 11 | def scale(self, s): |
| 12 | self.camera.frame.set_width(self.camera.frame.get_width()/s) |
nothing calls this directly
no outgoing calls
no test coverage detected