Make use of round gates

This commit is contained in:
Quinn
2022-01-07 16:59:31 -08:00
parent 7129f0c875
commit 48a024a6b2
2 changed files with 17 additions and 10 deletions
+4 -4
View File
@@ -9,14 +9,14 @@ module pivot (throw, shaft_r) {
module pivot_square (throw, shaft_r, throw_extend = 0) {
hull() {
rotate([0,throw,0])
pivot(gate_height, throw_extend, shaft_r);
pivot(throw_extend, shaft_r);
rotate([0,-throw,0])
pivot(gate_height, throw_extend, shaft_r);
pivot(throw_extend, shaft_r);
rotate([0,0,90]) {
rotate([0,throw,0])
pivot(gate_height, throw_extend, shaft_r);
pivot(throw_extend, shaft_r);
rotate([0,-throw,0])
pivot(gate_height, throw_extend, shaft_r);
pivot(throw_extend, shaft_r);
}
};
}