add units scaling to z on dxf import
This commit is contained in:
parent
cc60537985
commit
61d977e169
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue