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

21 lines
376 B
JavaScript
Raw Normal View History

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