mirror of
https://github.com/tiberiuiancu/datamoshing.git
synced 2026-01-23 13:51:06 +01:00
12 lines
278 B
Python
12 lines
278 B
Python
def mosh_frames(frames):
|
|
for frame in frames:
|
|
if not frame:
|
|
continue
|
|
|
|
for row in frame:
|
|
for col in row:
|
|
# col contains the horizontal and vertical components of the vector
|
|
col[0] = 0
|
|
|
|
return frames
|