1
0
Fork 0

fix(paco): Paperless without detail. Fixes #1400

This commit is contained in:
Joost De Cock 2021-11-08 19:36:47 +01:00
parent 76244a6860
commit 0c999a7f0b
8 changed files with 285 additions and 281 deletions

View file

@ -7,6 +7,7 @@
#### Fixed #### Fixed
- Make paperless markings available when detail is disabled Closes [#1400](https://github.com/freesewing/freesewing/issues/1401)
- Make pocket flaps properly parametric Closes [#1401](https://github.com/freesewing/freesewing/issues/1401) - Make pocket flaps properly parametric Closes [#1401](https://github.com/freesewing/freesewing/issues/1401)
### simon ### simon

View file

@ -3,6 +3,8 @@ unreleased:
Fixed: Fixed:
paco: paco:
- Make paperless markings available when detail is disabled
Closes [#1400](https://github.com/freesewing/freesewing/issues/1401)
- Make pocket flaps properly parametric - Make pocket flaps properly parametric
Closes [#1401](https://github.com/freesewing/freesewing/issues/1401) Closes [#1401](https://github.com/freesewing/freesewing/issues/1401)
simon: simon:

View file

@ -5,6 +5,7 @@
### Fixed ### Fixed
- Make paperless markings available when detail is disabled Closes [#1400](https://github.com/freesewing/freesewing/issues/1401)
- Make pocket flaps properly parametric Closes [#1401](https://github.com/freesewing/freesewing/issues/1401) - Make pocket flaps properly parametric Closes [#1401](https://github.com/freesewing/freesewing/issues/1401)
## 2.19.0 (2021-10-17) ## 2.19.0 (2021-10-17)

View file

@ -178,6 +178,7 @@ export default function (part) {
.close() .close()
.attr('class', 'fabric sa') .attr('class', 'fabric sa')
} }
}
if (paperless) { if (paperless) {
// Help construct cross seam // Help construct cross seam
@ -301,7 +302,6 @@ export default function (part) {
}) })
} }
} }
}
return part return part
} }

View file

@ -53,6 +53,7 @@ export default function (part) {
.line(points.bottomRight.shift(-90, sa).shift(0, sa)) .line(points.bottomRight.shift(-90, sa).shift(0, sa))
.attr('class', 'help') .attr('class', 'help')
} }
}
if (paperless) { if (paperless) {
macro('vd', { macro('vd', {
@ -66,7 +67,6 @@ export default function (part) {
y: points.bottomRight.y + 15 + sa, y: points.bottomRight.y + 15 + sa,
}) })
} }
}
return part return part
} }

View file

@ -210,6 +210,7 @@ export default function (part) {
.close() .close()
.attr('class', 'fabric sa') .attr('class', 'fabric sa')
} }
}
if (paperless) { if (paperless) {
// Help construct crotch seam // Help construct crotch seam
@ -316,7 +317,6 @@ export default function (part) {
}) })
} }
} }
}
return part return part
} }

View file

@ -73,6 +73,7 @@ export default function (part) {
.line(points.pocketBagBottomLeft) .line(points.pocketBagBottomLeft)
.attr('class', 'lining sa') .attr('class', 'lining sa')
} }
}
if (paperless) { if (paperless) {
macro('hd', { macro('hd', {
@ -96,7 +97,6 @@ export default function (part) {
x: points.pocketBagBottomRight.x + 30 + sa, x: points.pocketBagBottomRight.x + 30 + sa,
}) })
} }
}
return part return part
} }

View file

@ -59,6 +59,7 @@ export default function (part) {
.line(points.bottomRight) .line(points.bottomRight)
.attr('class', 'lining sa') .attr('class', 'lining sa')
} }
}
if (paperless) { if (paperless) {
macro('hd', { macro('hd', {
@ -92,7 +93,6 @@ export default function (part) {
d: 15 + sa, d: 15 + sa,
}) })
} }
}
return part return part
} }