| 227 | } |
| 228 | |
| 229 | void setUiLengthPrecision( int precision ) |
| 230 | { |
| 231 | forAllLengthUnits( [&]<typename E>() |
| 232 | { |
| 233 | auto params = getDefaultUnitParams<E>(); |
| 234 | params.precision = precision; |
| 235 | setDefaultUnitParams( params ); |
| 236 | } ); |
| 237 | } |
| 238 | |
| 239 | int getUiAnglePrecision() |
| 240 | { |
no test coverage detected