summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/lucet.scad4
-rw-r--r--src/lucet_slot_handle.scad2
-rw-r--r--src/lucet_slot_head.scad2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/lucet.scad b/src/lib/lucet.scad
index 334b84a..9c8e9af 100644
--- a/src/lib/lucet.scad
+++ b/src/lib/lucet.scad
@@ -4,9 +4,9 @@ module lucet(handle=true, hole_r=4, slot_bottom=false, slot_top=false, h=6) {
difference() {
minkowski() {
linear_extrude(height=h-4) union() {
- import("gfx/lucet.dxf");
+ import("../gfx/lucet.dxf");
if (handle) {
- import("gfx/lucet-handle.dxf");
+ import("../gfx/lucet-handle.dxf");
}
}
sphere(r=2);
diff --git a/src/lucet_slot_handle.scad b/src/lucet_slot_handle.scad
index 94e31a2..673453b 100644
--- a/src/lucet_slot_handle.scad
+++ b/src/lucet_slot_handle.scad
@@ -1,3 +1,3 @@
use <lib/lucet.scad>;
-lucet(hole=0, slot_top=true);
+lucet(hole_r=0, slot_top=true);
diff --git a/src/lucet_slot_head.scad b/src/lucet_slot_head.scad
index 174a914..abc9971 100644
--- a/src/lucet_slot_head.scad
+++ b/src/lucet_slot_head.scad
@@ -1,3 +1,3 @@
use <lib/lucet.scad>;
-lucet(hole=0, slot_bottom=true, handle=false);
+lucet(hole_r=0, slot_bottom=true, handle=false);