diff --git a/BOSL2/V08APR26/SKU2689999/lib/strapping.scad b/BOSL2/V08APR26/SKU2689999/lib/strapping.scad new file mode 100644 index 0000000..3bb7880 --- /dev/null +++ b/BOSL2/V08APR26/SKU2689999/lib/strapping.scad @@ -0,0 +1,28 @@ +/* 79-character width +012345678.012345678.012345678.012345678.012345678.012345678.012345678.012345678 +*/ +/////////////////////////////////////////////////////////////////////////////// +// LibFile: strapping.scad +// FileGroup: STRAPPING +// FileSummary: Poly* and metal pallet strapping COTS +// +// DETAILS: +// Dimensional accuracy is very low, unless the strap is pre-processed +// Todo: NONE +/////////////////////////////////////////////////////////////////////////////// +include + +include + +// Mostly relevant to pallet strapping COTS +/* +S1655NW = 15.875; // Nominal Width 5/8", maybe anywhere within 2mm plus / minus +S1655NT = 0.508; // Nominal Thickness 0.02", more uniform than width +*/ + +*raw_strap(adjWidth = S1655NW, adjLength = 100, adjThickness = S1655NT); +module raw_strap(adjWidth, adjLength, adjThickness) { + + cuboid([adjWidth, adjLength, adjThickness]); + +}