mcopy/scad/canon_rf_ACME_camera_mount....

16 lines
269 B
OpenSCAD

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();