2024-11-19 06:24:27 +00:00
|
|
|
use <./common/common.scad>;
|
|
|
|
|
|
|
|
BolexFilmPlaneZ = 108.7;
|
2025-02-13 03:36:18 +00:00
|
|
|
BolexFilmPlaneX = -13.5;
|
|
|
|
BolexFilmPlaneY = (78 / 2) - 4;
|
2024-11-19 06:24:27 +00:00
|
|
|
|
|
|
|
module debug_bolex_film_plane (pos = [0, 0, 0], rot = [0, 0, 0]) {
|
|
|
|
translate(pos) rotate(rot) {
|
|
|
|
color("red") cube([16, 0.1, 10], center = true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module debug_bolex_base_plate (pos = [0, 0, 0], rot = [0, 0, 0]) {
|
|
|
|
translate(pos) rotate(rot) {
|
|
|
|
color("green") cube([56, 78, 0.1], center = true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module debug_bolex (pos = [0, 0, 0], rot = [0, 0, 0]) {
|
|
|
|
translate(pos) rotate(rot) {
|
|
|
|
debug_bolex_film_plane([BolexFilmPlaneX, BolexFilmPlaneY, BolexFilmPlaneZ]);
|
|
|
|
debug_bolex_base_plate();
|
|
|
|
}
|
|
|
|
}
|