mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-03-13 19:29:44 +01:00
Fixed semi-random cuboid() chamfer bug.
This commit is contained in:
parent
ae38c9aece
commit
0cb51f32d7
@ -247,8 +247,7 @@ module cuboid(
|
||||
xtcyl(l=m, r=r);
|
||||
multmatrix(mat)
|
||||
linear_extrude(height=m+0.1, center=true)
|
||||
scale(r+0.02)
|
||||
polygon([[1,0],[0,1],[1,1]]);
|
||||
polygon([[r,0],[0.99*r,0],[0,0.99*r],[0,r],[r,r]]);
|
||||
}
|
||||
}
|
||||
} else if (e.y) {
|
||||
@ -260,8 +259,7 @@ module cuboid(
|
||||
ytcyl(l=m, r=r);
|
||||
multmatrix(mat)
|
||||
linear_extrude(height=m+0.1, center=true)
|
||||
scale(r+0.02)
|
||||
polygon([[1,0],[0,1],[1,1]]);
|
||||
polygon([[r,0],[0.99*r,0],[0,0.99*r],[0,r],[r,r]]);
|
||||
}
|
||||
}
|
||||
} else if (e.z) {
|
||||
@ -273,8 +271,7 @@ module cuboid(
|
||||
zcyl(l=m, r=r);
|
||||
multmatrix(mat)
|
||||
linear_extrude(height=m+0.1, center=true)
|
||||
scale(r+0.02)
|
||||
polygon([[1,0],[0,1],[1,1]]);
|
||||
polygon([[r,0],[0.99*r,0],[0,0.99*r],[0,r],[r,r]]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user