1
0
Fork 0

fix(yuri): SA on gusset. See #1464

This commit is contained in:
Joost De Cock 2021-11-13 14:08:10 +01:00
parent 52bbd6d7b5
commit 5d34d2f909

View file

@ -21,7 +21,7 @@ export default function (part) {
.curve(points.cp1, points.cp2, points.right)
.attr('class', 'fabric')
paths.seam = paths.hat.join(paths.curve)
paths.seam = paths.hat.join(paths.curve).close()
// Complete?
if (complete) {
@ -41,6 +41,7 @@ export default function (part) {
paths.sa = paths.hat
.offset(sa)
.join(paths.curve.offset(3 * sa))
.close()
.attr('class', 'fabric sa')
}
}