bug: Fixed missing options. before option name and remove scalebox from sleeve
This commit is contained in:
parent
66749a5fe9
commit
1a07a6e5d4
7 changed files with 19 additions and 11 deletions
|
@ -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)
|
||||
|
|
|
@ -17,7 +17,6 @@ export default part => {
|
|||
macro,
|
||||
options
|
||||
} = part.shorthand();
|
||||
|
||||
let fold = options.buttonholePlacketFoldWidth;
|
||||
let width = options.buttonholePlacketWidth;
|
||||
points.placketCfNeck = points.cfNeck;
|
||||
|
|
|
@ -17,7 +17,7 @@ export default part => {
|
|||
|
||||
return options.buttonholePlacketStyle === "seamless"
|
||||
? frontLeftSeamless(part)
|
||||
: seperateButtonholePlacket
|
||||
: options.seperateButtonholePlacket
|
||||
? frontLeftClassicSeperate(part)
|
||||
: frontLeftClassicCuton(part);
|
||||
};
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue