mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-30 08:19:36 +00:00
Fix typo in assemble_a_path_from_fragments()
This commit is contained in:
parent
d7cb503ffc
commit
19f08c253a
1 changed files with 1 additions and 1 deletions
|
@ -878,7 +878,7 @@ function assemble_a_path_from_fragments(fragments, rightmost=true, startfrag=0,
|
|||
let(
|
||||
// Found fragment intersects with initial path
|
||||
hitidx = select(hits,-1),
|
||||
newpath = list_head(path,0,hitidx),
|
||||
newpath = list_head(path,hitidx),
|
||||
newfrags = concat(len(newpath)>1? [newpath] : [], remainder),
|
||||
outpath = concat(slice(path,hitidx,-2), foundfrag)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue