add missing instructions
This commit is contained in:
@ -50,7 +50,7 @@ module hingeModule() {
|
||||
translate(v = [sideWallConnW/2.0, hingePoleR + radiusXYSlack, 0])
|
||||
cylinder(r = hingePoleR + radiusXYSlack, h = inf50);
|
||||
|
||||
translate(v = [sideWallConnW/2.0, , 0])
|
||||
translate(v = [sideWallConnW/2.0, 0 , 0])
|
||||
cube(size=[2, 5, inf50], center=true);
|
||||
}
|
||||
|
||||
|
||||
@ -9,6 +9,9 @@ include <../../helper/screws.scad>
|
||||
translate(v=[10,-5,-(2+sideWallZHingeTotalClearance)])
|
||||
*magnetModule();
|
||||
|
||||
magnetModuleMagnetMountDy = magnetMountToYBarFront - sideWallSlotToXZ;
|
||||
magnetModuleMagnetMountDz = magnetMountToYBarTop + sideWallConnLugDepression;
|
||||
|
||||
module magnetModule() {
|
||||
|
||||
applyYBarScrewMount()
|
||||
@ -42,11 +45,6 @@ module magnetModule() {
|
||||
}
|
||||
|
||||
module applyMagnetMount() {
|
||||
|
||||
magnetMountDx = magnetMountShellRadius;
|
||||
magnetMountDy = magnetMountToYBarFront - sideWallSlotToXZ;
|
||||
magnetMountDz = magnetMountToYBarTop + sideWallConnLugDepression;
|
||||
|
||||
apply_pn() {
|
||||
magnetMountShell();
|
||||
magnetMountHole();
|
||||
@ -55,7 +53,7 @@ module magnetModule() {
|
||||
|
||||
module magnetMountShell() {
|
||||
hull() {
|
||||
translate(v = [0, magnetMountDy, magnetMountDz])
|
||||
translate(v = [0, magnetModuleMagnetMountDy, magnetModuleMagnetMountDz])
|
||||
rotate(a = [0, 90, 0])
|
||||
cylinder(r = magnetMountShellRadius, h = sideWallConnW-magnetFaceToSideWallConnOuterYEdge);
|
||||
|
||||
@ -66,8 +64,8 @@ module magnetModule() {
|
||||
|
||||
module magnetMountHole() {
|
||||
translate(v = [sideWallConnW-(magnetFaceToSideWallConnOuterYEdge+magnetHSlacked),
|
||||
magnetMountDy,
|
||||
magnetMountDz])
|
||||
magnetModuleMagnetMountDy,
|
||||
magnetModuleMagnetMountDz])
|
||||
rotate(a = [0, 90, 0])
|
||||
cylinder(r = magnetRSlacked, h = magnetHSlacked);
|
||||
}
|
||||
|
||||
@ -11,8 +11,8 @@ include <../sharedVariables.scad>
|
||||
include <./magnetModule.scad>
|
||||
include <./hingeModule.scad>
|
||||
|
||||
echo("Side Wall Height", sideWallZ);
|
||||
echo("Side Wall Depth", sideWallY);
|
||||
//echo("Side Wall Height", sideWallZ);
|
||||
//echo("Side Wall Depth", sideWallY);
|
||||
|
||||
//translate(v = [hingePoleDx ,hingePoleDy, 10])
|
||||
//rotate(a=[0,0,-120])
|
||||
|
||||
Reference in New Issue
Block a user