1
0
Fork 0
freesewing/packages/benjamin/src/bow3.js

21 lines
370 B
JavaScript
Raw Normal View History

2019-07-08 15:54:19 +02:00
export default function(part) {
2019-08-03 15:03:33 +02:00
let { options, points, paths, complete, macro, sa } = part.shorthand()
2019-07-08 15:54:19 +02:00
if (options.adjustmentRibbon) {
2019-08-03 15:03:33 +02:00
part.render = false
return part
2019-07-08 15:54:19 +02:00
}
if (complete) {
2019-08-03 15:03:33 +02:00
if (sa) paths.sa.render = true
macro('title', {
2019-07-08 15:54:19 +02:00
at: points.titleAnchor,
nr: 3,
2019-08-03 15:03:33 +02:00
title: 'bowTie',
2019-07-08 15:54:19 +02:00
scale: 0.8
2019-08-03 15:03:33 +02:00
})
2019-07-08 15:54:19 +02:00
}
2019-08-03 15:03:33 +02:00
return part
2019-07-08 15:54:19 +02:00
}