diff --git a/scad/canon_rf_ACME_bellows_adapter.scad b/scad/canon_rf_ACME_bellows_adapter.scad index 96f7672..c367caf 100644 --- a/scad/canon_rf_ACME_bellows_adapter.scad +++ b/scad/canon_rf_ACME_bellows_adapter.scad @@ -1,4 +1,4 @@ -include <../common/common.scad>; +include <./common/common.scad>; PlateHeight = 101; PlateWidth = 65.5; diff --git a/scad/canon_rf_ACME_camera_mount.scad b/scad/canon_rf_ACME_camera_mount.scad new file mode 100644 index 0000000..8793c94 --- /dev/null +++ b/scad/canon_rf_ACME_camera_mount.scad @@ -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(); \ No newline at end of file