2023-02-17 17:32:01 +00:00
|
|
|
import cadquery as cq
|
|
|
|
from cadquery import exporters
|
2023-04-01 21:46:35 +00:00
|
|
|
from cq_warehouse.drafting import Draft
|
2023-02-16 17:57:32 +00:00
|
|
|
|
2023-03-01 18:47:06 +00:00
|
|
|
import audio_plug
|
2023-02-16 17:57:32 +00:00
|
|
|
import battery_holder
|
2023-03-30 13:24:33 +00:00
|
|
|
import hdmi_out
|
|
|
|
import keyboard
|
|
|
|
import screen_pillars
|
2023-03-01 18:47:06 +00:00
|
|
|
import usb_hub
|
|
|
|
import zero_holder as cpu_holder
|
2023-04-15 20:38:43 +00:00
|
|
|
import dimensions as dim
|
2022-11-15 18:03:48 +00:00
|
|
|
|
|
|
|
# Base for the notebook. Basically a kbd base that extends back
|
|
|
|
# as much as possible
|
|
|
|
|
2023-04-15 20:38:43 +00:00
|
|
|
screen_pillars.init(dim.mounting_pillar_positions, dim.base_thickness - dim.shell_t)
|
2023-02-22 21:17:02 +00:00
|
|
|
|
2023-02-16 17:42:31 +00:00
|
|
|
|
2022-11-15 18:24:45 +00:00
|
|
|
def model():
|
2023-03-01 18:47:06 +00:00
|
|
|
# Create the basic shape of the case bottom.
|
|
|
|
model = (
|
2022-11-15 18:24:45 +00:00
|
|
|
cq.Workplane("XY")
|
2023-04-15 20:38:43 +00:00
|
|
|
.workplane(offset=dim.base_thickness / 2)
|
2022-11-15 18:24:45 +00:00
|
|
|
.tag("mid_height")
|
|
|
|
# Hollow box
|
2023-04-15 20:38:43 +00:00
|
|
|
.box(dim.width, dim.height, dim.base_thickness)
|
2022-11-15 18:24:45 +00:00
|
|
|
.edges("|Z")
|
|
|
|
.fillet(2)
|
|
|
|
.faces(">Z")
|
2023-04-15 20:38:43 +00:00
|
|
|
.shell(-dim.shell_t)
|
2022-11-15 18:24:45 +00:00
|
|
|
)
|
|
|
|
|
2023-03-01 18:47:06 +00:00
|
|
|
# Now the basic box shape is in place, start adding things
|
|
|
|
# and cutting holes.
|
|
|
|
|
2023-03-20 18:04:19 +00:00
|
|
|
model = usb_hub.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
2023-03-20 18:04:19 +00:00
|
|
|
bottom_face="<Z",
|
|
|
|
back_face=">Y",
|
2023-04-15 20:38:43 +00:00
|
|
|
offset_x=dim.usb_offset_x,
|
2023-03-20 18:04:19 +00:00
|
|
|
offset_y=0,
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-20 18:04:19 +00:00
|
|
|
)
|
2023-03-01 18:47:06 +00:00
|
|
|
|
|
|
|
# Hole for audio in right side
|
2023-03-20 16:19:14 +00:00
|
|
|
model = audio_plug.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
|
|
|
offset_x=dim.width - audio_plug.item_w,
|
2023-04-12 17:11:27 +00:00
|
|
|
offset_y=19,
|
2023-04-01 17:26:48 +00:00
|
|
|
bottom_face="<Z",
|
2023-03-20 16:19:14 +00:00
|
|
|
back_face=">X",
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-20 16:19:14 +00:00
|
|
|
)
|
2023-03-01 18:47:06 +00:00
|
|
|
|
2023-03-30 13:24:33 +00:00
|
|
|
# Hole for HDMI out in the back
|
|
|
|
model = hdmi_out.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
2023-04-15 20:55:26 +00:00
|
|
|
offset_x=dim.hdmi_out_offset_x,
|
2023-03-30 13:24:33 +00:00
|
|
|
offset_y=0,
|
|
|
|
bottom_face=None,
|
|
|
|
back_face=">Y",
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-30 13:24:33 +00:00
|
|
|
)
|
|
|
|
|
2023-03-15 13:15:40 +00:00
|
|
|
model = cpu_holder.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
|
|
|
offset_x=dim.cpu_offset_x,
|
|
|
|
offset_y=dim.cpu_offset_y,
|
2023-03-15 13:15:40 +00:00
|
|
|
bottom_face="<Z",
|
2023-03-15 13:46:36 +00:00
|
|
|
back_face=None, # Not exposing the holes
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-15 13:15:40 +00:00
|
|
|
)
|
2023-03-01 18:47:06 +00:00
|
|
|
|
2023-03-14 17:42:01 +00:00
|
|
|
# This adds all the holes and extrusions for the battery system
|
|
|
|
model = battery_holder.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
|
|
|
offset_x=dim.battery_offset_x,
|
|
|
|
offset_y=dim.battery_offset_y,
|
2023-03-14 17:42:01 +00:00
|
|
|
bottom_face="<Z",
|
|
|
|
back_face=">Y",
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-14 17:42:01 +00:00
|
|
|
)
|
|
|
|
|
2023-03-21 13:21:04 +00:00
|
|
|
model = screen_pillars.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
2023-03-21 13:21:04 +00:00
|
|
|
offset_x=0,
|
|
|
|
offset_y=0,
|
|
|
|
bottom_face="<Z",
|
|
|
|
back_face=None,
|
2023-04-15 20:38:43 +00:00
|
|
|
shell_t=dim.shell_t,
|
2023-03-21 13:21:04 +00:00
|
|
|
)
|
|
|
|
|
2023-03-27 20:15:49 +00:00
|
|
|
model = keyboard.add(
|
|
|
|
model=model,
|
2023-04-15 20:38:43 +00:00
|
|
|
width=dim.width,
|
|
|
|
height=dim.height,
|
|
|
|
thickness=dim.base_thickness,
|
2023-03-28 13:36:58 +00:00
|
|
|
bottom_face="<Z",
|
2023-03-27 20:15:49 +00:00
|
|
|
back_face=None,
|
2023-04-15 20:38:43 +00:00
|
|
|
offset_x=dim.shell_t,
|
|
|
|
offset_y=dim.kbd_height + dim.shell_t,
|
|
|
|
shell_t=dim.shell_t,
|
2023-03-27 20:15:49 +00:00
|
|
|
)
|
|
|
|
|
2023-03-01 18:47:06 +00:00
|
|
|
return model
|
|
|
|
|
2022-11-15 19:01:20 +00:00
|
|
|
|
2022-11-28 18:09:49 +00:00
|
|
|
if __name__ == "__main__":
|
2023-03-28 14:15:41 +00:00
|
|
|
model = model()
|
|
|
|
|
|
|
|
left_cutout = cq.Sketch().polygon(
|
2023-04-15 20:38:43 +00:00
|
|
|
[
|
|
|
|
(0, 0),
|
|
|
|
(dim.width / 2, 0),
|
|
|
|
(dim.width / 2, -dim.height),
|
|
|
|
(0, -dim.height),
|
|
|
|
(0, 0),
|
|
|
|
],
|
2023-03-28 14:15:41 +00:00
|
|
|
mode="a",
|
|
|
|
)
|
|
|
|
|
|
|
|
right_side = (
|
|
|
|
model.faces("<Z")
|
|
|
|
.workplaneFromTagged("mid_height")
|
2023-04-15 20:38:43 +00:00
|
|
|
.transformed(offset=cq.Vector(0, 0, -dim.base_thickness / 2))
|
|
|
|
.center(-dim.width / 2, dim.height / 2)
|
2023-03-28 14:15:41 +00:00
|
|
|
.placeSketch(left_cutout)
|
|
|
|
.cutBlind(100)
|
|
|
|
)
|
|
|
|
|
|
|
|
exporters.export(right_side, "right_side.stl")
|
|
|
|
|
|
|
|
right_cutout = cq.Sketch().polygon(
|
|
|
|
[
|
2023-04-15 20:38:43 +00:00
|
|
|
(dim.width / 2, 0),
|
|
|
|
(dim.width, 0),
|
|
|
|
(dim.width, -dim.height),
|
|
|
|
(dim.width / 2, -dim.height),
|
|
|
|
(dim.width / 2, 0),
|
2023-03-28 14:15:41 +00:00
|
|
|
],
|
|
|
|
mode="a",
|
|
|
|
)
|
|
|
|
|
|
|
|
left_side = (
|
|
|
|
model.faces("<Z")
|
|
|
|
.workplaneFromTagged("mid_height")
|
2023-04-15 20:38:43 +00:00
|
|
|
.transformed(offset=cq.Vector(0, 0, -dim.base_thickness / 2))
|
|
|
|
.center(-dim.width / 2, dim.height / 2)
|
2023-03-28 14:15:41 +00:00
|
|
|
.placeSketch(right_cutout)
|
|
|
|
.cutBlind(100)
|
|
|
|
)
|
|
|
|
exporters.export(left_side, "left_side.stl")
|
|
|
|
|
2023-04-12 17:11:27 +00:00
|
|
|
# draft = Draft(decimal_precision=1)
|
|
|
|
# dimensions = []
|
|
|
|
# dimensions.append(
|
|
|
|
# draft.extension_line(
|
|
|
|
# object_edge=[
|
|
|
|
# cq.Vertex.makeVertex(-width / 2, -height / 2, 0),
|
|
|
|
# cq.Vertex.makeVertex(width / 2, -height / 2, 0),
|
|
|
|
# ],
|
|
|
|
# offset=10.0,
|
|
|
|
# )
|
|
|
|
# )
|
|
|
|
# dimensions.append(
|
|
|
|
# draft.extension_line(
|
|
|
|
# object_edge=[
|
|
|
|
# cq.Vertex.makeVertex(width / 2, -height / 2, 0),
|
|
|
|
# cq.Vertex.makeVertex(width / 2, height / 2, 0),
|
|
|
|
# ],
|
|
|
|
# offset=10.0,
|
|
|
|
# )
|
|
|
|
# )
|
2023-04-01 21:46:35 +00:00
|
|
|
|
2023-03-28 14:15:41 +00:00
|
|
|
exporters.export(model, "model.stl")
|
2023-04-01 21:46:35 +00:00
|
|
|
|
2023-04-12 17:11:27 +00:00
|
|
|
# for d in dimensions[1:]:
|
|
|
|
# dimensions[0].add(d.toCompound())
|
|
|
|
# dimensions[0].add(model)
|
2023-04-01 21:46:35 +00:00
|
|
|
|
|
|
|
exporters.export(
|
2023-04-12 17:11:27 +00:00
|
|
|
# model[0].toCompound(),
|
|
|
|
model,
|
2023-04-01 21:46:35 +00:00
|
|
|
"model.svg",
|
|
|
|
opt={
|
|
|
|
"projectionDir": (0, 0, 1),
|
|
|
|
"strokeWidth": 0.3,
|
|
|
|
},
|
|
|
|
)
|