mirror of
https://github.com/raviriley/STL-to-OpenSCAD-Converter.git
synced 2024-11-22 06:33:12 +01:00
Change rounding to thousandths place
This commit is contained in:
parent
774e4f59f5
commit
217c699587
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user