2018-12-20 11:41:35 +01:00
|
|
|
export default function(part) {
|
|
|
|
// prettier-ignore
|
|
|
|
let {store, sa, Point, points, Path, paths, complete, paperless, macro, units} = part.shorthand();
|
2018-09-21 21:30:20 +02:00
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
let width = store.get("hoodCenterWidth");
|
|
|
|
points.topLeft = new Point(0, 0);
|
|
|
|
points.bottomLeft = new Point(0, width);
|
|
|
|
points.topMidLeft = new Point(width, 0);
|
|
|
|
points.bottomMidLeft = new Point(width, width);
|
|
|
|
points.topMidRight = new Point(width * 1.5, 0);
|
|
|
|
points.bottomMidRight = new Point(width * 1.5, width);
|
|
|
|
points.topRight = new Point(width * 2.5, 0);
|
|
|
|
points.bottomRight = new Point(width * 2.5, width);
|
2018-09-21 21:30:20 +02:00
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
paths.seam = new Path()
|
|
|
|
.move(points.topMidLeft)
|
|
|
|
.line(points.topLeft)
|
|
|
|
.line(points.bottomLeft)
|
|
|
|
.line(points.bottomMidLeft)
|
|
|
|
.move(points.bottomMidRight)
|
|
|
|
.line(points.bottomRight)
|
|
|
|
.line(points.topRight)
|
|
|
|
.line(points.topMidRight)
|
|
|
|
.attr("class", "fabric");
|
|
|
|
paths.hint = new Path()
|
|
|
|
.move(points.topMidLeft)
|
|
|
|
.line(points.topMidRight)
|
|
|
|
.move(points.bottomMidLeft)
|
|
|
|
.line(points.bottomMidRight)
|
|
|
|
.attr("class", "fabric dashed");
|
2018-09-21 21:30:20 +02:00
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
// Complete pattern?
|
|
|
|
if (complete) {
|
|
|
|
if (sa) {
|
|
|
|
paths.sa = paths.seam.offset(sa);
|
2018-09-21 21:30:20 +02:00
|
|
|
}
|
2018-12-20 11:41:35 +01:00
|
|
|
points.title = points.bottomLeft.shiftFractionTowards(
|
|
|
|
points.topRight,
|
|
|
|
0.5
|
|
|
|
);
|
|
|
|
macro("title", { at: points.title, nr: 7, title: "hoodCenter" });
|
|
|
|
macro("grainline", {
|
|
|
|
from: points.topLeft.shift(-90, width / 2),
|
|
|
|
to: points.topRight.shift(-90, width / 2)
|
|
|
|
});
|
|
|
|
}
|
2018-09-21 21:30:20 +02:00
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
// Paperless?
|
|
|
|
if (paperless) {
|
|
|
|
macro("vd", {
|
|
|
|
from: points.bottomRight,
|
|
|
|
to: points.topRight,
|
|
|
|
x: points.topRight.x + sa + 15
|
|
|
|
});
|
|
|
|
macro("hd", {
|
|
|
|
from: points.bottomLeft,
|
|
|
|
to: points.bottomRight,
|
|
|
|
y: points.bottomRight.y + sa + 15,
|
|
|
|
text: units(store.get("hoodCenterLength"))
|
|
|
|
});
|
2018-09-21 21:30:20 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
return part;
|
|
|
|
};
|