initial upload
This commit is contained in:
28
BOSL2/V08APR26/SKU2689999/lib/strapping.scad
Normal file
28
BOSL2/V08APR26/SKU2689999/lib/strapping.scad
Normal file
@@ -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 <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]);
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user