add units scaling to z on dxf import

This commit is contained in:
Stewart Allen 2026-05-02 11:46:50 -04:00
commit 61d977e169

View file

@ -195,7 +195,7 @@ export function parse(text, opt = { }) {
// Extrude polygons to 3D
for (let poly of nest) {
let obj = poly.extrude(depth);
let obj = poly.extrude(depth * scale);
objs.push(obj);
}