diff --git a/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad b/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad index f9253c3..8b51477 100644 --- a/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad +++ b/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad @@ -35,15 +35,14 @@ The arcCompenstate param could present the 'standard' slide recipes No image published. 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) { 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() { - for (i = [0:drawPairs]) { translate([(i*arrayMoveX), 0, 0]) union() { +translate([-((0.5*drawPairs)*arrayMoveX), 0, 0]) // move back to center + for (i = [1:drawPairs]) { translate([(i*arrayMoveX), 0, 0]) hinged_conveyor_sided(slideX=minSlideX, slideY=dimSegmentY[dimSlideY]); - echo("Y Slide:", dimSegmentY[dimSlideY]); - }}} -} \ No newline at end of file + } +}