(self)
| 163 | @define |
| 164 | class Dolly(ExampleScene): |
| 165 | def update(self): |
| 166 | ExampleScene.update(self) |
| 167 | self.state.height = 1.0 |
| 168 | self.state.focus = 0.32 |
| 169 | self.state.dolly = (1 - math.cos(self.cycle)) |
| 170 | |
| 171 | @define |
| 172 | class Focus(ExampleScene): |