def shift_in_from_left(image): """ Creates an animation where "image" is shifted from left of the display and in to the center of the display. """ for i in reversed(range(DISPLAY_WIDTH + 1)): yield Image.shift_left(image, i)
def shift_out_to_left(image): """ Creates an animation where "image" is shifted from center of display out of the screen to the left. """ for i in range(DISPLAY_WIDTH + 1): yield Image.shift_left(image, i)