mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-12-09 07:19:11 +00:00
syntax error fix
This commit is contained in:
parent
6261d20a34
commit
1a6308f6c7
1 changed files with 1 additions and 1 deletions
|
|
@ -1029,7 +1029,7 @@ function offset(
|
|||
degenerate = (len(goodsegs)-(!closed && select(good,-1)?1:0) <= 0)
|
||||
)
|
||||
assert(!(degenerate && error), "\nOffset of path is degenerate.")
|
||||
: degenerate ? [] // return empty path
|
||||
degenerate ? [] // return empty path
|
||||
: let(
|
||||
// Extend the shifted segments to their intersection points. For open curves the endpoints
|
||||
// are simply the endpoints of the shifted segments. If segments are parallel then the intersection
|
||||
|
|
|
|||
Loading…
Reference in a new issue