mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
offset_sweep "extra" bugfix
This commit is contained in:
parent
401cdce913
commit
44fea4047e
1 changed files with 1 additions and 2 deletions
|
@ -591,8 +591,7 @@ function _rounding_offsets(edgespec,z_dir=1) =
|
|||
_bezcorner([[0,0],[0,z_dir*abs(joint)],[-joint,z_dir*abs(joint)]], k, $fn=N+2)
|
||||
)
|
||||
)
|
||||
|
||||
quant(extra > 0? concat(offsets, [last(offsets)+[0,z_dir*extra]]) : offsets, 1/1024);
|
||||
quant(extra > 0 && len(offsets)>0 ? concat(offsets, [last(offsets)+[0,z_dir*extra]]) : offsets, 1/1024);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue