Open icodk opened 6 years ago
I've marked this as an enhancement, so I won't get around to it until after some other work. Meanwhile, I wonder if you can get by with this workaround: using a degenerate path, meaning either:
Currently, the dxf export code will create the layer table from the paths in the drawing. Then my question is if in your process, will LibraCAD ignore these "invisible" entities?
I will try and let you know thanks
it works by using Rectangle
var l1 = new makerjs.models.Rectangle(0,0);
l1.layer='layer1';
And then in the
var model={
models: {
objects: otherobjects,
l1:l1,
}
}
Hi I need to prepare some empty layers that will be exported to DXF together with the rest of the model. Is there a way to create empty layers with names that will just be there when imported to ex. LibraCAD ,eventually with more settings like font size etc. ?