Compare commits

...

2 Commits

Author SHA1 Message Date
Artur Kerge 4ee25b2dfc Add descriptive line 2023-07-28 18:56:16 +03:00
Artur Kerge 94eb3981d0 rm clock hands' hole boolean 2023-07-28 18:54:34 +03:00
3 changed files with 6 additions and 4 deletions

View File

@ -1,2 +1,4 @@
# 24h Wall Clock
![24h wall clock render](24hWallClock.png "Rendered OpenSCAD 24h wall clock file")
Couldn't find a wall clock design I liked so made my own.

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