Correctly reference common.scad and add file for camera mount.
This commit is contained in:
parent
7d2c2b9d09
commit
18875a01c6
|
@ -1,4 +1,4 @@
|
|||
include <../common/common.scad>;
|
||||
include <./common/common.scad>;
|
||||
|
||||
PlateHeight = 101;
|
||||
PlateWidth = 65.5;
|
||||
|
|
|
@ -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();
|
Loading…
Reference in New Issue