rename connectingBar to sideBar

This commit is contained in:
zhao
2023-01-07 23:57:16 -05:00
parent acfdae48e1
commit 2069f51cd8
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
include <../math.scad>
include <./config.scad>
include <./mainRail.scad>
include <./connectingBar.scad>
include <./sideBar.scad>
*mainRail();
connectingBar();
sideBar();

View File

@ -23,7 +23,7 @@ echo("Bar total depth: ", barDepth);
echo("Bar total width: ", barWidth);
module connectingBar() {
module sideBar() {
module positive() {
difference() {
@ -115,7 +115,7 @@ module connectingBar() {
}
}
module connectingBar() {
module sideBar() {
difference() {
positive();
@ -128,5 +128,5 @@ module connectingBar() {
}
}
connectingBar();
sideBar();
}