1
0
Fork 0

bug: Fixed missing options. before option name and remove scalebox from sleeve

This commit is contained in:
Joost De Cock 2018-12-29 15:01:46 +01:00
parent 66749a5fe9
commit 1a07a6e5d4
7 changed files with 19 additions and 11 deletions

View file

@ -76,7 +76,6 @@ export default part => {
.move(points.bballEnd)
.line(points.hips)
.join(paths.saBaseFromHips);
paths.hemBase = new Path()
.move(points.cfHem)
.line(points.bballStart)
@ -108,7 +107,7 @@ export default part => {
paths.saBase.render = false;
paths.saBaseFromHips.render = false;
paths.saBaseFromArmhole.render = false;
paths.hemBase.render = false;
aths.hemBase.render = false;
paths.seam = paths.hemBase
.join(paths.saBase)
.join(paths.saBaseFromArmhole)

View file

@ -17,7 +17,6 @@ export default part => {
macro,
options
} = part.shorthand();
let fold = options.buttonholePlacketFoldWidth;
let width = options.buttonholePlacketWidth;
points.placketCfNeck = points.cfNeck;

View file

@ -17,7 +17,7 @@ export default part => {
return options.buttonholePlacketStyle === "seamless"
? frontLeftSeamless(part)
: seperateButtonholePlacket
: options.seperateButtonholePlacket
? frontLeftClassicSeperate(part)
: frontLeftClassicCuton(part);
};

View file

@ -2,6 +2,15 @@ import { calculateReduction } from "./shared";
export default part => {
part.paths = {}; // This removed paperless dimensions from brian block
for (let pid of [
"__scaleboxLead",
"__scaleboxMetric",
"__scaleboxImperial",
"__scaleboxText",
"__scaleboxTitle",
"__scaleboxLink"
])
delete part.points[pid];
let {
store,
measurements,