Correctly reference common.scad and add file for camera mount.

This commit is contained in:
Matt McWilliams 2024-04-15 14:05:38 -06:00
parent 7d2c2b9d09
commit 18875a01c6
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,4 @@
include <../common/common.scad>;
include <./common/common.scad>;
PlateHeight = 101;
PlateWidth = 65.5;

View File

@ -0,0 +1,16 @@
include <./common/common.scad>;
module debug_camera() {
X = 122;
Y = 34.75;
Z = 74;
cube([X, Y, Z], center = true);
cylinder(r = R(5), h = Z + 1, center = true, $fn = 30);
}
module canon_rf_ACME_camera_mount () {
}
canon_rf_ACME_camera_mount();
debug_camera();