From 03f785b638b7b6738822c0cd92c1497f8bc5add7 Mon Sep 17 00:00:00 2001 From: TheRON Date: Wed, 22 Apr 2026 15:11:23 -0400 Subject: [PATCH] dimSlideY now adjusts 5.6" - 9.6" --- BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad b/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad index ff9a487..a2b1f47 100644 --- a/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad +++ b/BOSL2/V08APR26/SKU2689999/asm_proto_0001a.scad @@ -19,7 +19,7 @@ Sliding the stamps minus the entire length of the stamp. No image published. 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 @@ -27,11 +27,19 @@ No image pulished. Not yet mapped for potential uses. -------------------------------------------------------------------------- */ 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. Not yet mapped for potential uses. --------------------------------------------------------------------------- */ \ No newline at end of file +-------------------------------------------------------------------------- */ +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]); +}