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
Is 3 decimal digits enough? With 1000 dots-per-key this will have a resolution of 19.05 nm, while with 5 digits we have 0.1905 nm. Either seems excessive TBH (implemented in c17fd05)
Improve stringification, for example a line currently produces "l10 -50" while we could do "l10-50". printf supports the "% f" format which inserts a ' ' or '-', but rust doesn't seem to have an equivalent (implemented in c17fd05)
Currently we use absolute moves and relative everything else, but in some cases the opposite would produce smaller output. Is it worth implementing some logic to optimise this?
"l10 -50"
while we could do"l10-50"
.printf
supports the"% f"
format which inserts a' '
or'-'
, but rust doesn't seem to have an equivalent (implemented in c17fd05)The text was updated successfully, but these errors were encountered: