29 lines
976 B
OpenSCAD
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]);
|
|
|
|
}
|