apparentlymart / python-stl

Python library for parsing and producing STL files, in both ASCII and binary formats. No longer maintained.
MIT License
9 stars 13 forks source link

Allow numbers read from file to contain '+'. #1

Closed greenarrow closed 9 years ago

greenarrow commented 9 years ago

This is valid in Python string to float conversion and is found in STL files generated by several programs.

e.g. '321e+5'

apparentlymart commented 9 years ago

Thanks!

Would you mind adding a quick test for this? I think it should just be a matter of adding a new case to this one.