MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / animate

Function animate

example_code/item_045.py:61–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59
60print("Example 2")
61def animate():
62 for delta in move(4, 5.0):
63 yield delta
64 for delta in pause(3):
65 yield delta
66 for delta in move(2, 3.0):
67 yield delta
68
69
70print("Example 3")

Callers

nothing calls this directly

Calls 2

moveFunction · 0.85
pauseFunction · 0.85

Tested by

no test coverage detected