(self)
| 192 | @define |
| 193 | class Origin(ExampleScene): |
| 194 | def update(self): |
| 195 | ExampleScene.update(self) |
| 196 | self.state.origin = (0.0, 1.0) |
| 197 | self.state.height = (1 - math.cos(self.cycle))/2 |
| 198 | |
| 199 | # ---------------------------------------------------------------------------- # |
| 200 |