clock faces combined, numbering added

This commit is contained in:
2020-01-02 12:03:01 -08:00
parent 0642062876
commit 2c2049a689
18 changed files with 300274 additions and 0 deletions

104918
Clock_Face_Arabic.stl Normal file
View File

File diff suppressed because it is too large Load Diff

View File

Binary file not shown.

BIN
Clock_Face_Combined.stl Normal file
View File

Binary file not shown.

View File

Binary file not shown.

129222
Clock_Face_Roman.stl Normal file
View File

File diff suppressed because it is too large Load Diff

View File

Binary file not shown.

View File

File diff suppressed because it is too large Load Diff

24
face.scad Normal file
View File

@@ -0,0 +1,24 @@
// translate([0,0,-6])
// import("Clock_Face_Background.stl");
translate([0,0,11])
import("Clock_Face_Tickmarks.stl");
// add digits to the tickmarks
function digit(d, t)=
t=="arabic"?
str(d):
["I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII"][d-1];
for (i=[1:12])
{
rotate(360-30*i)
translate([0,62,0])
linear_extrude(4.8, convexity=10)
text(digit(i, "roman"), halign="center", valign="center", size=12, font="Times New Roman:style=Regular");
}
// to raise the tickmarks so they are at the proper height when combined by the slicer
translate([0,58,0])
cylinder(d=1, h=2);

View File

Binary file not shown.

View File