rm clock hands' hole boolean

This commit is contained in:
Artur Kerge 2023-07-28 18:54:34 +03:00
parent 26b7ad6955
commit 94eb3981d0
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ $fn=180;
module face() {
difference(){
clock_circle(D);
clock_outline(D);
union() {
translate([0,-D/3]) color("red") sun(D/18);
translate([0.5,D/3]) color("white") moon(D/7);

View File

@ -1,8 +1,8 @@
module clock_circle(D, bool) {
module clock_outline(D) {
difference(){
color("burlywood")
circle(D);
if (bool) circle(d=0.7);
circle(d=0.7);
}
}
//clock_circle(12, true);
//clock_circle(12);