Change rounding to thousandths place

This commit is contained in:
Ravi Riley 2023-03-31 02:11:31 -07:00
parent 774e4f59f5
commit 217c699587

View File

@ -118,8 +118,8 @@ function parseBinaryResult(stl) {
} }
} }
var boundsMin = `[${minx.toFixed(2)},${miny.toFixed(2)},${minz.toFixed(2)}]`; var boundsMin = `[${minx.toFixed(3)},${miny.toFixed(3)},${minz.toFixed(3)}]`;
var boundsMax = `[${maxx.toFixed(2)},${maxy.toFixed(2)},${maxz.toFixed(2)}]`; var boundsMax = `[${maxx.toFixed(3)},${maxy.toFixed(3)},${maxz.toFixed(3)}]`;
saveResult(vertices, triangles, boundsMin, boundsMax); saveResult(vertices, triangles, boundsMin, boundsMax);
} }
@ -194,8 +194,8 @@ function parseAsciiResult(stl) {
} }
} }
var boundsMin = `[${minx.toFixed(2)},${miny.toFixed(2)},${minz.toFixed(2)}]`; var boundsMin = `[${minx.toFixed(3)},${miny.toFixed(3)},${minz.toFixed(3)}]`;
var boundsMax = `[${maxx.toFixed(2)},${maxy.toFixed(2)},${maxz.toFixed(2)}]`; var boundsMax = `[${maxx.toFixed(3)},${maxy.toFixed(3)},${maxz.toFixed(3)}]`;
saveResult(vertices, triangles, boundsMin, boundsMax); saveResult(vertices, triangles, boundsMin, boundsMax);
} }
} }