14 lines
286 B
OpenSCAD
14 lines
286 B
OpenSCAD
include <_settings.scad>
|
|
|
|
render(convexity = 10) {
|
|
union() {
|
|
linear_extrude(plate_height)
|
|
difference() {
|
|
import("example.dxf", layer = "base");
|
|
import("example.dxf", layer = "text");
|
|
}
|
|
|
|
linear_extrude(struts_height)
|
|
import("example.dxf", layer = "struts");
|
|
}
|
|
}
|