You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently tried parsing a dxf file with a NaN inside of it, and realized that running Drawing::load(&mut Cursor::new(content)); results in the error: Err("invalid float literal at line/offset 74"). looking at the dxf file, line 74 is
NaN.0
Which means it failed in parsing it since it viewed NaN as an invalid float
The text was updated successfully, but these errors were encountered:
I recently tried parsing a dxf file with a NaN inside of it, and realized that running Drawing::load(&mut Cursor::new(content)); results in the error: Err("invalid float literal at line/offset 74"). looking at the dxf file, line 74 is
NaN.0
Which means it failed in parsing it since it viewed NaN as an invalid float
The text was updated successfully, but these errors were encountered: