Make the stand a bit taller to allow cable to pass below

This commit is contained in:
Roberto Alsina 2022-11-24 14:44:17 -03:00
parent c5b2d68518
commit 8b152fc844
2 changed files with 16731 additions and 13145 deletions

View File

@ -5,27 +5,29 @@ from cadquery2 import exporters
lower_stands = (
cq.Sketch()
.push([(0,0), (58, 0), (58, 23), (0, 23)])
.circle(5, mode="a")
.circle(3, mode="a")
)
higher_stands = (
cq.Sketch()
.push([(0,0), (58, 0), (58, 23), (0, 23)])
.circle(2.65, mode="a")
.circle(2.65/2, mode="a")
)
model = (
cq.Workplane("XY")
.workplane()
.box(75, 40, 2)
.edges("+Z")
.fillet(3)
.faces(">Z")
.workplane(centerOption="CenterOfBoundBox")
.center(-29, -11.5)
.placeSketch(lower_stands)
.extrude(3)
.extrude(4)
.workplane()
.placeSketch(higher_stands)
.extrude(8)
.extrude(9)
)
exporters.export(model, "cpu_holder.stl")

File diff suppressed because it is too large Load Diff