From 87a68d07fa3a29f923187073193def5bf0805c94 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 14 Apr 2023 14:49:13 -0400 Subject: [PATCH] MountX and MountY shouldn't be arguments, are immediately overwritten --- motors.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motors.scad b/motors.scad index 52b7b18..dba1cb2 100644 --- a/motors.scad +++ b/motors.scad @@ -77,7 +77,7 @@ module geared_motor_mount_pad (pos = [0, 0, 0], D, Z) { } } -module geared_motor_mounts (pos = [0, 0, 0], MountX, MountY) { +module geared_motor_mounts (pos = [0, 0, 0]) { MountX = GearedMotorMountX / 2; MountY = GearedMotorMountY / 2; Z = 1.5;