2022-07-22 01:00:45 +00:00
|
|
|
import cadquery2 as cq
|
|
|
|
from cadquery2 import exporters
|
|
|
|
|
2022-07-22 21:23:27 +00:00
|
|
|
from parameters import *
|
2022-07-22 11:05:59 +00:00
|
|
|
|
2022-07-22 01:00:45 +00:00
|
|
|
screen_cutout = (
|
2022-07-22 10:52:26 +00:00
|
|
|
cq.Sketch().trapezoid(screen_w, screen_l, 90, mode="a").reset().vertices().fillet(1)
|
2022-07-22 01:00:45 +00:00
|
|
|
)
|
|
|
|
|
2022-07-22 13:13:21 +00:00
|
|
|
board_cutout = (
|
|
|
|
cq.Sketch().trapezoid(55, 50, 90, mode="a").reset().vertices("<X").fillet(5)
|
|
|
|
)
|
2022-07-22 13:11:25 +00:00
|
|
|
|
2022-07-23 19:12:56 +00:00
|
|
|
cable_relief = cq.Sketch().trapezoid(width, 30, 90)
|
2022-07-22 17:38:08 +00:00
|
|
|
|
2022-07-22 02:00:37 +00:00
|
|
|
segment_breaks_top = (
|
2022-07-22 10:52:26 +00:00
|
|
|
cq.Sketch()
|
2022-07-22 16:01:44 +00:00
|
|
|
.rarray(1, length, 1, 1)
|
|
|
|
.trapezoid(width / 3, 35, 110, mode="a")
|
2022-07-22 10:52:26 +00:00
|
|
|
.reset()
|
|
|
|
.vertices()
|
2022-07-22 16:01:44 +00:00
|
|
|
.fillet(5)
|
2022-07-22 02:00:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
segment_breaks_bottom = (
|
2022-07-22 10:52:26 +00:00
|
|
|
cq.Sketch()
|
2022-07-22 16:01:44 +00:00
|
|
|
.rarray(1, length, 1, 1)
|
|
|
|
.trapezoid(width / 3, 35, 70, mode="a")
|
2022-07-22 10:52:26 +00:00
|
|
|
.reset()
|
|
|
|
.vertices()
|
2022-07-22 16:01:44 +00:00
|
|
|
.fillet(5)
|
2022-07-22 10:52:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
back_reinforcement = (
|
2022-07-22 13:11:25 +00:00
|
|
|
cq.Sketch().trapezoid(width / 2, 15, 90, mode="a").reset().vertices().fillet(2)
|
2022-07-22 10:52:26 +00:00
|
|
|
)
|
|
|
|
|
2022-07-22 16:01:44 +00:00
|
|
|
threaded_inserts = cq.Sketch().rarray(width / 8, 0, 4, 1).circle(ti_radius, mode="a")
|
2022-07-22 01:00:45 +00:00
|
|
|
|
2022-07-24 13:30:22 +00:00
|
|
|
|
|
|
|
def case():
|
|
|
|
# Case for the screen
|
|
|
|
return (
|
|
|
|
# Basic filleted box shape
|
|
|
|
cq.Workplane("bottom")
|
|
|
|
.lineTo(-width, 0)
|
|
|
|
.lineTo(-width, height)
|
|
|
|
.lineTo(0, height)
|
|
|
|
.close()
|
|
|
|
.extrude(length)
|
|
|
|
.faces(">X")
|
|
|
|
.shell(-shell_t)
|
|
|
|
.edges("|X")
|
|
|
|
.fillet(fillet_s)
|
|
|
|
# Cutout visible screen area from top face
|
|
|
|
.faces(">Z")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.center((width - screen_w) / 2 - screen_left_margin, 0)
|
|
|
|
.placeSketch(screen_cutout)
|
|
|
|
.cutBlind(-shell_t)
|
|
|
|
# Cutout for segment breaks
|
|
|
|
.faces(">Z")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.center(0, length / 2)
|
|
|
|
.placeSketch(segment_breaks_top)
|
|
|
|
.cutBlind(-1000)
|
|
|
|
.center(0, -length)
|
|
|
|
.placeSketch(segment_breaks_bottom)
|
|
|
|
.cutBlind(-1000)
|
|
|
|
# Cutout for the circuit board
|
|
|
|
.faces("<Z")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.center(width / 2 - 27.5, 0)
|
|
|
|
.placeSketch(board_cutout)
|
|
|
|
.cutBlind(-shell_t)
|
|
|
|
# Make some room for the ribbon cable
|
|
|
|
.faces("<Z[-2]")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.placeSketch(cable_relief)
|
|
|
|
.cutBlind(-1)
|
|
|
|
# Back reinforcement with holes for threaded inserts
|
|
|
|
.faces("<Z")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.placeSketch(back_reinforcement)
|
|
|
|
.extrude(1 + 1 + ti_depth - shell_t)
|
|
|
|
.faces("<Z")
|
|
|
|
.workplane(centerOption="CenterOfBoundBox")
|
|
|
|
.placeSketch(threaded_inserts)
|
|
|
|
.cutBlind(-ti_depth)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
full_case = case()
|
|
|
|
exporters.export(full_case, "case.stl")
|
|
|
|
|
|
|
|
top_case = (case()
|
2022-07-22 12:58:36 +00:00
|
|
|
.faces(">X")
|
2022-07-24 13:30:22 +00:00
|
|
|
.workplane(offset=-width/2)
|
|
|
|
.split(keepTop=True)
|
2022-07-22 01:00:45 +00:00
|
|
|
)
|
2022-07-24 13:30:22 +00:00
|
|
|
exporters.export(top_case, "case_1.stl")
|
2022-07-22 01:00:45 +00:00
|
|
|
|
2022-07-24 13:30:22 +00:00
|
|
|
bottom_case = (case()
|
|
|
|
.faces(">X")
|
|
|
|
.workplane(offset=-width/2)
|
|
|
|
.split(keepBottom=True)
|
|
|
|
)
|
|
|
|
exporters.export(bottom_case, "case_2.stl")
|