If it will improve user experience, go for it.
Some worries:
* a UI preference won't change e.g., how the center-format arc radius
check is performed in the interpreter, but some user might expect it to(?)
* right now different (but fixed) precisions are available for mm and
in. It is a regression if this is no longer possible
Note that in Python as in C, it is possible to take the 'width' and
'precision' values (or both) from the list of format arguments, like so:
>>> "%*.*f" % (5, 3, math.pi) # width 5, precision 3
'3.142'
>>> "%*.*f" % (6, 2, math.pi) # width 6, precision 2
' 3.14'
Jeff
------------------------------------------------------------------------------
_______________________________________________
Emc-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/emc-developers