1
0
Fork 0

cutting layout view

This commit is contained in:
Enoch Riese 2023-06-06 11:17:14 -05:00
parent 62638902e8
commit 15c4201906
31 changed files with 585 additions and 741 deletions

View file

@ -54,7 +54,7 @@ export const formatFraction128 = (fraction, format = 'html') => {
rest = fraction - inches
}
let fraction128 = Math.round(rest * 128)
if (fraction128 == 0) return formatImperial(negative, 0, false, false, format)
if (fraction128 == 0) return formatImperial(negative, inches, false, false, format)
for (let i = 1; i < 7; i++) {
const numoFactor = Math.pow(2, 7 - i)