(self)
| 2 | |
| 3 | class TestScene(AlgoScene): |
| 4 | def construct(self): |
| 5 | avatar = AlgoAvatar(self) |
| 6 | avatar.center().scale(0.5) |
| 7 | self.add(avatar) |
| 8 | self.wait(2) |
| 9 | |
| 10 | class TestTexScene(AlgoScene): |
| 11 | def construct(self): |
nothing calls this directly
no test coverage detected