5 lines
177 B
Python
5 lines
177 B
Python
|
|
||
|
def mirror_x(clip, apply_to= "mask"):
|
||
|
""" flips the clip horizontally (and its mask too, by default) """
|
||
|
return clip.fl_image(lambda f: f[:,::-1], apply_to = apply_to)
|