2019-03-16 11:39:06 +01:00
|
|
|
export default function(part) {
|
2019-03-17 17:30:25 +01:00
|
|
|
let { paperless, sa, snippets, Snippet, utils, store, complete, points, measurements, options, macro, Point, paths, Path } = part.shorthand();
|
2019-03-16 11:39:06 +01:00
|
|
|
|
|
|
|
let width = store.get("pocketWidth");
|
|
|
|
let depth = store.get("pocketDepth");
|
|
|
|
|
|
|
|
points.topLeft = new Point(0, 0);
|
|
|
|
points.topRight = new Point(width, 0);
|
|
|
|
points.bottomLeft = new Point(0, depth);
|
|
|
|
points.bottomRight = new Point(width, depth);
|
|
|
|
// Add foldover points
|
|
|
|
points.edgeLeft = points.bottomLeft.shiftFractionTowards(
|
|
|
|
points.topLeft,
|
|
|
|
1 + options.pocketFoldover
|
|
|
|
);
|
|
|
|
points.edgeRight = new Point(
|
|
|
|
points.topRight.x,
|
|
|
|
points.edgeLeft.y
|
|
|
|
);
|
|
|
|
|
2019-03-16 18:16:31 +01:00
|
|
|
// Round the pocket
|
|
|
|
if (options.frontPocketRadius > 0) {
|
|
|
|
macro("round", {
|
|
|
|
from: points.topLeft,
|
|
|
|
to: points.bottomRight,
|
|
|
|
via: points.bottomLeft,
|
|
|
|
radius: width * options.frontPocketRadius,
|
|
|
|
prefix: "left"
|
|
|
|
});
|
|
|
|
macro("round", {
|
|
|
|
from: points.bottomLeft,
|
|
|
|
to: points.topRight,
|
|
|
|
via: points.bottomRight,
|
|
|
|
radius: width * options.frontPocketRadius,
|
|
|
|
prefix: "right"
|
|
|
|
});
|
|
|
|
}
|
2019-03-16 11:39:06 +01:00
|
|
|
|
2019-03-16 18:16:31 +01:00
|
|
|
// Paths
|
|
|
|
if (options.frontPocketRadius > 0) {
|
|
|
|
paths.seam = new Path()
|
|
|
|
.move(points.edgeLeft)
|
|
|
|
.line(points.leftStart)
|
|
|
|
.curve(points.leftCp1, points.leftCp2, points.leftEnd)
|
|
|
|
.line(points.rightStart)
|
|
|
|
.curve(points.rightCp1, points.rightCp2, points.rightEnd)
|
|
|
|
.line(points.edgeRight)
|
|
|
|
.line(points.edgeLeft)
|
|
|
|
.close()
|
|
|
|
.attr("class", "fabric");
|
|
|
|
} else {
|
|
|
|
paths.seam = new Path()
|
|
|
|
.move(points.edgeLeft)
|
|
|
|
.line(points.bottomLeft)
|
|
|
|
.line(points.bottomRight)
|
|
|
|
.line(points.edgeRight)
|
|
|
|
.line(points.edgeLeft)
|
|
|
|
.close()
|
|
|
|
.attr("class", "fabric");
|
|
|
|
}
|
2019-03-16 11:39:06 +01:00
|
|
|
paths.fold = new Path()
|
|
|
|
.move(points.topLeft)
|
|
|
|
.line(points.topRight)
|
|
|
|
.attr("class", "fabric dashed");
|
|
|
|
|
2019-03-16 18:16:31 +01:00
|
|
|
if (complete) {
|
|
|
|
// Title
|
|
|
|
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5);
|
|
|
|
macro("title", {
|
|
|
|
at: points.title,
|
|
|
|
nr: 9,
|
|
|
|
title: "pocket"
|
|
|
|
});
|
|
|
|
|
|
|
|
// Instructions
|
|
|
|
paths.fold
|
2019-03-16 18:36:19 +01:00
|
|
|
.attr("data-text", "foldAlongThisLine")
|
2019-03-16 18:16:31 +01:00
|
|
|
.attr("data-text-class", "center");
|
|
|
|
|
|
|
|
// Grainline
|
|
|
|
macro("grainline", {
|
|
|
|
from: points.bottomLeft.shift(0 ,10),
|
|
|
|
to: points.edgeLeft.shift(0 ,10)
|
|
|
|
});
|
|
|
|
|
|
|
|
if (sa) paths.sa = paths.seam.offset(sa).attr("class", "fabric sa");
|
2019-03-17 17:30:25 +01:00
|
|
|
|
|
|
|
if (paperless) {
|
|
|
|
macro("hd", {
|
|
|
|
from: points.edgeLeft,
|
|
|
|
to: points.edgeRight,
|
|
|
|
y: points.edgeLeft.y - sa - 15
|
|
|
|
});
|
|
|
|
let corner = points.bottomRight
|
|
|
|
if (options.frontPocketRadius > 0) corner = points.rightStart;
|
|
|
|
macro("vd", {
|
|
|
|
from: corner,
|
|
|
|
to: points.topRight,
|
|
|
|
x: points.edgeRight.x + sa + 15
|
|
|
|
});
|
|
|
|
macro("vd", {
|
|
|
|
from: corner,
|
|
|
|
to: points.edgeRight,
|
|
|
|
x: points.edgeRight.x + sa + 30
|
|
|
|
});
|
|
|
|
}
|
2019-03-16 18:16:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 11:39:06 +01:00
|
|
|
return part;
|
|
|
|
}
|