rename inner modules for clarity in yBar

This commit is contained in:
zhao
2023-01-14 12:58:11 -05:00
parent d56c14bb15
commit 3ef4ea5cf9

View File

@ -34,14 +34,14 @@ echo("Bar total width: ", yBarWidth);
module yBar() { module yBar() {
applyBaseConnector() applyBasePlateConnector()
applyStackConnector() applyStackConnector()
applySideWallConnector() applySideWallConnector()
applyRailConnector() applyRailConnector()
applyXBarConnector() applyXBarConnector()
base(); yBarBase();
module base() { module yBarBase() {
difference() { difference() {
sphericalFiletEdge(yBarWidth, yBarDepth, yBarHeight, yBarRoundness); sphericalFiletEdge(yBarWidth, yBarDepth, yBarHeight, yBarRoundness);
@ -50,7 +50,7 @@ module yBar() {
} }
} }
module applyBaseConnector() { module applyBasePlateConnector() {
apply_pn() { apply_pn() {
mirrorOtherCorner() { mirrorOtherCorner() {
translate(v = [yBarWidth-12, joinCornerDepth, 0.01]) // why do we need 0.01 here??? translate(v = [yBarWidth-12, joinCornerDepth, 0.01]) // why do we need 0.01 here???