Compare commits

...

3 Commits

6 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ elements = [
"x": 0,
"y": 0,
"z": 5.5,
"shape": cq.Sketch().push(kbd_pillar_positions).circle(4, mode="a"),
"shape": cq.Sketch().push(kbd_pillar_positions).circle(5, mode="a"),
},
# Taller pillars with holes for self-tapping screws
{
@ -36,7 +36,7 @@ elements = [
"shape": (
cq.Sketch()
.push(kbd_pillar_positions)
.circle(2.2, mode="a")
.circle(2.4, mode="a")
.circle(1.1, mode="s")
),
},

Binary file not shown.

Binary file not shown.

View File

@ -146,8 +146,8 @@ def model():
thickness=thickness,
bottom_face="<Z",
back_face=None,
offset_x=0,
offset_y=kbd_height,
offset_x=shell_t,
offset_y=kbd_height + shell_t,
shell_t=shell_t,
)

Binary file not shown.

View File

@ -66,7 +66,7 @@ def hex_vents(*, size, width, height):
{
"x": 0,
"y": 0,
"shape": cq.Sketch().push(vent_positions).regularPolygon(size * 0.9, 6),
"shape": cq.Sketch().push(vent_positions).regularPolygon(size * 0.85, 6),
}
]