Skip to content

Instantly share code, notes, and snippets.

@Quiark
Created April 27, 2015 06:52
Strokes test
strokes = load_3d_csv(r'c:\Transfer\cmss\strokes.csv')
for ix, s in enumerate(strokes):
print ix, len(s['x']), len(s['y'])
assert len(s['x']) == len(s['y'])
assert len(s['x']) == len(s['t'])
assert len(s['x']) == (1 + len(s['v']))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment