fix(carlton) Fix stray seam allowance path
This commit is contained in:
parent
777a9db557
commit
92c856209b
1 changed files with 4 additions and 7 deletions
|
@ -167,13 +167,10 @@ function draftCarltonCollar({ sa, points, options, macro, paths, Path, part, sto
|
|||
._curve(points.topLeftCp, points.topLeft)
|
||||
paths.seam = paths.saBase.clone().line(points.standTop).close().attr('class', 'fabric')
|
||||
|
||||
if (sa)
|
||||
paths.sa = paths.saBase
|
||||
.offset(sa)
|
||||
.line(points.topLeft)
|
||||
.move(points.standTop)
|
||||
.line(paths.sa.start())
|
||||
.addClass('fabric sa')
|
||||
if (sa) {
|
||||
paths.sa = paths.saBase.offset(sa).line(points.topLeft)
|
||||
paths.sa.move(points.standTop).line(paths.sa.start()).addClass('fabric sa')
|
||||
}
|
||||
|
||||
/*
|
||||
* Annotations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue