corrected and reduced hindge_conveyor_standarSlideY()

This commit is contained in:
2026-04-22 15:37:36 -04:00
parent e75b955af4
commit 129a4b2526

View File

@@ -35,15 +35,14 @@ 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, drawPairs=3); hindge_conveyor_standarSlideY(dimSlideY=8, drawPairs=2);
module hindge_conveyor_standarSlideY(dimSlideY, drawPairs) { module hindge_conveyor_standarSlideY(dimSlideY, drawPairs) {
minSlideX = wClosedEnd-(1.25*wd); // Minium distance for a functional print minSlideX = wClosedEnd-(1.25*wd); // Minium distance for a functional print
arrayMoveX = (2*wClosedEnd)-(2.5*wd); arrayMoveX = (2*wClosedEnd)-(2.5*wd); // moves the stamps in locked pairs
translate([-((0.5*drawPairs)*arrayMoveX), 0, 0]) union() { translate([-((0.5*drawPairs)*arrayMoveX), 0, 0]) // move back to center
for (i = [0:drawPairs]) { translate([(i*arrayMoveX), 0, 0]) union() { for (i = [1:drawPairs]) { translate([(i*arrayMoveX), 0, 0])
hinged_conveyor_sided(slideX=minSlideX, slideY=dimSegmentY[dimSlideY]); hinged_conveyor_sided(slideX=minSlideX, slideY=dimSegmentY[dimSlideY]);
echo("Y Slide:", dimSegmentY[dimSlideY]); }
}}}
} }