mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
Minor hollow extrude bugfix.
This commit is contained in:
parent
9a3c25d3d3
commit
e4ab4a9527
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ module extrude_from_to(pt1, pt2, convexity=undef, twist=undef, scale=undef, slic
|
||||||
module extrude_2d_hollow(wall=2, height=50, twist=90, slices=60, center=undef, orient=ORIENT_Z, align=V_UP)
|
module extrude_2d_hollow(wall=2, height=50, twist=90, slices=60, center=undef, orient=ORIENT_Z, align=V_UP)
|
||||||
{
|
{
|
||||||
orient_and_align([0,0,height], orient, align, center) {
|
orient_and_align([0,0,height], orient, align, center) {
|
||||||
linear_extrude(height=height, twist=twist, slices=slices) {
|
linear_extrude(height=height, twist=twist, slices=slices, center=true) {
|
||||||
difference() {
|
difference() {
|
||||||
children();
|
children();
|
||||||
offset(r=-wall) {
|
offset(r=-wall) {
|
||||||
|
|
Loading…
Reference in a new issue