mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Fixed bracing on thinning_wall()
This commit is contained in:
parent
9f6a95090f
commit
5c28029c47
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,92];
|
BOSL_VERSION = [2,0,93];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
|
@ -220,10 +220,11 @@ module thinning_wall(h=50, l=100, thick=5, ang=30, braces=false, strut=5, wall=2
|
||||||
[-strut*0.33-(thick-wall)/2/tan(ang), wall/2]
|
[-strut*0.33-(thick-wall)/2/tan(ang), wall/2]
|
||||||
];
|
];
|
||||||
xflip_copy() {
|
xflip_copy() {
|
||||||
difference() {
|
intersection() {
|
||||||
extrude_from_to(corner1,corner2) {
|
extrude_from_to(corner1,corner2) {
|
||||||
polygon(bracepath);
|
polygon(bracepath);
|
||||||
}
|
}
|
||||||
|
cube([l,thick,h],center=true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue