dimSlideY now adjusts 5.6" - 9.6"

This commit is contained in:
2026-04-22 15:11:23 -04:00
parent e5896d5764
commit 03f785b638

View File

@@ -19,7 +19,7 @@ Sliding the stamps minus the entire length of the stamp.
No image published. No image published.
Not yet mapped for potential uses. Not yet mapped for potential uses.
-------------------------------------------------------------------------- */ -------------------------------------------------------------------------- */
*hinged_conveyor_stacked(linkCount=1, slideY=(-wMidHeight), stackZ = wd); *hinged_conveyor_stacked(slideY=(-wMidHeight), stackZ = wd);
/* /*
The COTS wire is not flat, so a 3*wd reduction is more accurate The COTS wire is not flat, so a 3*wd reduction is more accurate
@@ -27,11 +27,19 @@ No image pulished.
Not yet mapped for potential uses. Not yet mapped for potential uses.
-------------------------------------------------------------------------- */ -------------------------------------------------------------------------- */
arcCompensate = 3*wd; arcCompensate = 3*wd;
hinged_conveyor_stacked(linkCount=1, slideY=(-(wMidHeight-arcCompensate)), stackZ = wd); *hinged_conveyor_stacked(slideY=(-(wMidHeight-arcCompensate)), stackZ = wd);
/* /*
Single-pivot hinge, the two wires are in contact. Bent wires will cause tension. The arcCompenstate param could present the 'standard' slide recipes
No image published. No image published.
Not yet mapped for potential uses. Not yet mapped for potential uses.
-------------------------------------------------------------------------- */ -------------------------------------------------------------------------- */
hindge_conveyor_standarSlideY(dimSlideY=8);
module hindge_conveyor_standarSlideY(dimSlideY) {
minSlideX = wClosedEnd-(1.25*wd); // Minium distance for a functional print
hinged_conveyor_sided(slideX=minSlideX, slideY=dimSegmentY[dimSlideY]);
echo("Y Slide:", dimSegmentY[dimSlideY]);
}