Created
April 27, 2015 06:52
-
-
Save Quiark/84ef2b603fd0f7932fe2 to your computer and use it in GitHub Desktop.
Strokes test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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