gfwilliams / svgtoeagle

Online SVG to Eagle CAD converter
MIT License
86 stars 27 forks source link

Complex Polygons result in unusable scripts #23

Open owendelong opened 4 years ago

owendelong commented 4 years ago

A sufficiently complex figure will result in a script which has line lengths in excess of Eagle's parser's maximum and thus it will not properly handle the script.

Recommended solution: Alter the code to place newlines on lines of excessive length.

Eagle will parse continuation lines until it sees a ; so there is no problem with using them.

gfwilliams commented 4 years ago

Thanks, that sounds like a good plan. Any chance you could contribute a change for it?