From f7e706c21d38a806222e7223811128a649f9949a Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 16 Aug 2023 13:59:09 -0500 Subject: [PATCH] module for reference top plate without holes --- src/components.scad | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components.scad b/src/components.scad index cbc8de2..eaf5875 100644 --- a/src/components.scad +++ b/src/components.scad @@ -79,9 +79,13 @@ module levermountholes() { m4_hole_countersink(); } +module base_topplate() { + cube([175,200,5], center=true); +} + module topplate() { difference() { - cube([175,200,5], center=true); + base_topplate(); // holes for mount bolts translate([77.5, 90, 0]) m4_hole();