Files
OpenSCAD/BOSL2/V08APR26/SKU2689999/lib/strapping.scad
2026-04-24 10:56:45 -04:00

29 lines
976 B
OpenSCAD

/* 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 <BOSL2/std.scad>
include <params.scad>
// 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]);
}