21 lines
376 B
JavaScript
21 lines
376 B
JavaScript
![]() |
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;
|
||
|
}
|