2018-12-20 11:41:35 +01:00
|
|
|
export default function(part) {
|
|
|
|
// prettier-ignore
|
|
|
|
let {measurements, options, 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 =
|
|
|
|
(measurements.centerBackNeckToWaist + measurements.naturalWaistToHip) *
|
2019-05-02 12:40:03 +02:00
|
|
|
options.ribbingHeight *
|
2018-12-20 11:41:35 +01:00
|
|
|
2;
|
2018-09-21 21:30:20 +02:00
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
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
|
|
|
}
|
2019-05-02 12:40:03 +02:00
|
|
|
points.title = points.bottomLeft.shiftFractionTowards(points.topRight, 0.5);
|
2018-12-20 11:41:35 +01:00
|
|
|
macro("title", { at: points.title, nr: 8, title: "waistband" });
|
|
|
|
macro("grainline", {
|
|
|
|
from: points.bottomMidLeft,
|
|
|
|
to: points.topMidLeft
|
|
|
|
});
|
|
|
|
}
|
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(
|
|
|
|
measurements.chestCircumference *
|
|
|
|
(1 + options.chestEase) *
|
2019-05-02 12:40:03 +02:00
|
|
|
(1 - options.ribbingStretch)
|
2018-12-20 11:41:35 +01:00
|
|
|
)
|
|
|
|
});
|
2018-09-21 21:30:20 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:41:35 +01:00
|
|
|
return part;
|
2019-05-02 12:40:03 +02:00
|
|
|
}
|