| 94 | self.wait() |
| 95 | |
| 96 | class SegmentTreeBase(AlgoScene): |
| 97 | def __init__(self, **kwargs): |
| 98 | super().__init__(**kwargs) |
| 99 | self.datas = np.arange(6) |
| 100 | |
| 101 | class SegmentTreeBuild(SegmentTreeBase): |
| 102 | def __init__(self, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected