(self)
| 3545 | |
| 3546 | class Saccadic: |
| 3547 | def __init__(self): |
| 3548 | self.position = 'left' |
| 3549 | self.counter = 0 |
| 3550 | self.radius = scale_to_height(10) |
| 3551 | self.color = (0, 0, 255, 255) |
| 3552 | |
| 3553 | def tick(self, dt): |
| 3554 | self.counter += 1 |
nothing calls this directly
no test coverage detected