mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-27 06:49:39 +00:00
Tweaks to make cubetruss prints more reliable.
This commit is contained in:
parent
721bd97a8b
commit
5207231850
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
$cubetruss_size = 30;
|
||||
$cubetruss_strut_size = 3;
|
||||
$cubetruss_strut_size = 4;
|
||||
$cubetruss_bracing = true;
|
||||
$cubetruss_clip_thickness = 1.6;
|
||||
|
||||
|
@ -471,7 +471,7 @@ module cubetruss_segment(size, strut, bracing, anchor=CENTER, spin=0, orient=UP)
|
|||
// Start with a cube.
|
||||
cube([size, size, h], center=true);
|
||||
|
||||
cube([size-strut*2, size-strut*2, h-strut*2], center=true);
|
||||
cube([size-strut*2, size-strut*2, h-strut*2+1], center=true);
|
||||
|
||||
// Hollow out octogons in X and Y axes.
|
||||
zrot_copies([0,90]) {
|
||||
|
|
Loading…
Reference in a new issue