* git mv src/wasm-lib rust Signed-off-by: Jess Frazelle <github@jessfraz.com> * mv wasm-lib to workspace Signed-off-by: Jess Frazelle <github@jessfraz.com> * mv kcl-lib Signed-off-by: Jess Frazelle <github@jessfraz.com> * mv derive docs Signed-off-by: Jess Frazelle <github@jessfraz.com> * resolve file paths Signed-off-by: Jess Frazelle <github@jessfraz.com> * clippy Signed-off-by: Jess Frazelle <github@jessfraz.com> * move more shit Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix more paths Signed-off-by: Jess Frazelle <github@jessfraz.com> * make yarn build:wasm work Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix scripts Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixups Signed-off-by: Jess Frazelle <github@jessfraz.com> * better references Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix cargo ci Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix reference Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix more ci Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix tests Signed-off-by: Jess Frazelle <github@jessfraz.com> * cargo sort Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix script Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * fmt Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix a dep Signed-off-by: Jess Frazelle <github@jessfraz.com> * sort Signed-off-by: Jess Frazelle <github@jessfraz.com> * remove unused deps Signed-off-by: Jess Frazelle <github@jessfraz.com> * Revert "remove unused deps" This reverts commit fbabdb062e275fd5cbc1476f8480a1afee15d972. * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * deps; Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
78 lines
2.0 KiB
Plaintext
78 lines
2.0 KiB
Plaintext
rpizWidth = 30
|
|
rpizLength = 65
|
|
|
|
caseThickness = 1
|
|
|
|
border = 4
|
|
|
|
screwHeight = 4
|
|
|
|
caseWidth = rpizWidth + border * 2
|
|
caseLength = rpizLength + border * 2
|
|
caseHeight = 8
|
|
|
|
widthBetweenScrews = 23
|
|
lengthBetweenScrews = 29 * 2
|
|
|
|
miniHdmiDistance = 12.4
|
|
microUsb1Distance = 41.4
|
|
microUsb2Distance = 54
|
|
|
|
miniHdmiWidth = 11.2
|
|
microUsbWidth = 7.4
|
|
connectorPadding = 4
|
|
|
|
miniHdmiHole = startSketchAt([
|
|
0,
|
|
border + miniHdmiDistance - (miniHdmiWidth / 2)
|
|
])
|
|
|> line(endAbsolute = [
|
|
0,
|
|
border + miniHdmiDistance + miniHdmiWidth / 2
|
|
])
|
|
|> line(endAbsolute = [
|
|
1,
|
|
border + miniHdmiDistance + miniHdmiWidth / 2
|
|
])
|
|
|> line(endAbsolute = [
|
|
1,
|
|
border + miniHdmiDistance - (miniHdmiWidth / 2)
|
|
])
|
|
|> close(%)
|
|
|
|
case = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> line(endAbsolute = [caseWidth, 0], tag = $edge1)
|
|
|> line(endAbsolute = [caseWidth, caseLength], tag = $edge2)
|
|
|> line(endAbsolute = [0, caseLength], tag = $edge3)
|
|
|> close(tag = $edge4)
|
|
|> extrude(length = caseHeight)
|
|
|> fillet(
|
|
radius = 1,
|
|
tags = [
|
|
getNextAdjacentEdge(edge1),
|
|
getNextAdjacentEdge(edge2),
|
|
getNextAdjacentEdge(edge3),
|
|
getNextAdjacentEdge(edge4)
|
|
],
|
|
)
|
|
|
|
fn m25Screw(x, y, height) {
|
|
screw = startSketchOn("XY")
|
|
|> startProfileAt([0, 0], %)
|
|
|> circle(center = [x, y], radius = 2.5)
|
|
|> hole(circle(center = [x, y], radius = 1.25), %)
|
|
|> extrude(length = height)
|
|
return screw
|
|
}
|
|
|
|
m25Screw(border + rpizWidth / 2 - (widthBetweenScrews / 2), 0 + border + rpizLength / 2 - (lengthBetweenScrews / 2), screwHeight)
|
|
|
|
m25Screw(border + rpizWidth / 2 - (widthBetweenScrews / 2), 0 + border + rpizLength / 2 + lengthBetweenScrews / 2, screwHeight)
|
|
|
|
m25Screw(border + rpizWidth / 2 + widthBetweenScrews / 2, 0 + border + rpizLength / 2 + lengthBetweenScrews / 2, screwHeight)
|
|
|
|
m25Screw(border + rpizWidth / 2 + widthBetweenScrews / 2, 0 + border + rpizLength / 2 - (lengthBetweenScrews / 2), screwHeight)
|
|
|
|
shell(case, faces = ['end'], thickness = caseThickness)
|