cadquery/monitor/case.py

91 lines
2.3 KiB
Python
Raw Normal View History

2022-07-21 22:00:45 -03:00
import cadquery2 as cq
from cadquery2 import exporters
2022-07-22 18:23:27 -03:00
from parameters import *
2022-07-22 08:05:59 -03:00
2022-07-21 22:00:45 -03:00
screen_cutout = (
cq.Sketch().trapezoid(screen_w, screen_l, 90, mode="a").reset().vertices().fillet(1)
2022-07-21 22:00:45 -03:00
)
board_cutout = (
cq.Sketch().trapezoid(55, 50, 90, mode="a").reset().vertices("<X").fillet(5)
)
2022-07-23 16:12:56 -03:00
cable_relief = cq.Sketch().trapezoid(width, 30, 90)
2022-07-22 14:38:08 -03:00
2022-07-21 23:00:37 -03:00
segment_breaks_top = (
cq.Sketch()
.rarray(1, length, 1, 1)
.trapezoid(width / 3, 35, 110, mode="a")
.reset()
.vertices()
.fillet(5)
2022-07-21 23:00:37 -03:00
)
segment_breaks_bottom = (
cq.Sketch()
.rarray(1, length, 1, 1)
.trapezoid(width / 3, 35, 70, mode="a")
.reset()
.vertices()
.fillet(5)
)
back_reinforcement = (
cq.Sketch().trapezoid(width / 2, 15, 90, mode="a").reset().vertices().fillet(2)
)
threaded_inserts = cq.Sketch().rarray(width / 8, 0, 4, 1).circle(ti_radius, mode="a")
2022-07-21 22:00:45 -03:00
2022-07-22 18:23:27 -03:00
# Case for the screen
case = (
2022-07-21 22:00:45 -03:00
# Basic filleted box shape
cq.Workplane("bottom")
.lineTo(-width, 0)
.lineTo(-width, height)
.lineTo(0, height)
.close()
.extrude(length)
2022-07-22 09:58:36 -03:00
.faces(">X")
2022-07-21 22:00:45 -03:00
.shell(-shell_t)
.edges("|X")
.fillet(fillet_s)
2022-07-21 22:00:45 -03:00
# 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)
2022-07-21 23:00:37 -03:00
# Cutout for segment breaks
.faces(">Z")
.workplane(centerOption="CenterOfBoundBox")
.center(0, length / 2)
2022-07-21 23:00:37 -03:00
.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)
2022-07-22 14:38:08 -03:00
# 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)
2022-07-22 14:38:08 -03:00
.extrude(1 + 1 + ti_depth - shell_t)
.faces("<Z")
.workplane(centerOption="CenterOfBoundBox")
.placeSketch(threaded_inserts)
2022-07-22 08:05:59 -03:00
.cutBlind(-ti_depth)
2022-07-21 22:00:45 -03:00
)
2022-07-22 18:23:27 -03:00
exporters.export(case, "case.stl")