2019-03-16 11:39:06 +01:00
|
|
|
export default function(part) {
|
|
|
|
let { sa, snippets, Snippet, utils, store, complete, points, measurements, options, macro, Point, paths, Path } = part.shorthand();
|
|
|
|
|
|
|
|
let width = store.get("innerPocketWidth");
|
|
|
|
let welt = store.get("innerPocketWeltHeight");
|
|
|
|
let height = width * options.innerPocketDepth;
|
|
|
|
|
|
|
|
points.topLeft = new Point(0, 0);
|
|
|
|
points.topRight = new Point(width, 0);
|
|
|
|
points.foldLeft = new Point(0, height);
|
|
|
|
points.foldRight = new Point(width, height);
|
|
|
|
points.bottomLeft = new Point(0, height*2 + welt*2);
|
|
|
|
points.bottomRight = new Point(width, height*2 + welt*2);
|
|
|
|
|
|
|
|
// Paths
|
|
|
|
paths.seam = new Path()
|
|
|
|
.move(points.topLeft)
|
|
|
|
.line(points.bottomLeft)
|
|
|
|
.line(points.bottomRight)
|
|
|
|
.line(points.topRight)
|
|
|
|
.line(points.topLeft)
|
|
|
|
.close()
|
|
|
|
.attr("class", "lining");
|
|
|
|
|
|
|
|
paths.fold = new Path()
|
|
|
|
.move(points.foldLeft)
|
|
|
|
.line(points.foldRight)
|
|
|
|
.attr("class", "stroke-sm lining dashed");
|
|
|
|
|
2019-03-16 18:36:19 +01:00
|
|
|
if (complete) {
|
|
|
|
points.title = points.topLeft.shiftFractionTowards(points.foldRight, 0.5)
|
|
|
|
// Title
|
|
|
|
macro("title", {
|
|
|
|
at: points.title,
|
|
|
|
nr: 14,
|
|
|
|
title: "innerPocketBag"
|
|
|
|
});
|
|
|
|
|
|
|
|
// Grainline
|
|
|
|
macro("grainline", {
|
|
|
|
from: points.bottomLeft.shift(0, 10),
|
|
|
|
to: points.topLeft.shift(0, 10)
|
|
|
|
});
|
|
|
|
|
|
|
|
// Instructions
|
|
|
|
paths.fold
|
|
|
|
.attr("data-text", "foldAlongThisLine")
|
|
|
|
.attr("data-text-class", "center");
|
|
|
|
|
|
|
|
if (sa) paths.sa = paths.seam.offset(sa).attr("class", "lining sa");
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:39:06 +01:00
|
|
|
return part;
|
|
|
|
}
|