fix(paco): Paperless without detail. Fixes #1400
This commit is contained in:
parent
76244a6860
commit
0c999a7f0b
8 changed files with 285 additions and 281 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
#### 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)
|
||||
|
||||
### simon
|
||||
|
|
|
@ -3,6 +3,8 @@ unreleased:
|
|||
|
||||
Fixed:
|
||||
paco:
|
||||
- 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)
|
||||
simon:
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
### 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)
|
||||
|
||||
## 2.19.0 (2021-10-17)
|
||||
|
|
|
@ -178,6 +178,7 @@ export default function (part) {
|
|||
.close()
|
||||
.attr('class', 'fabric sa')
|
||||
}
|
||||
}
|
||||
|
||||
if (paperless) {
|
||||
// Help construct cross seam
|
||||
|
@ -301,7 +302,6 @@ export default function (part) {
|
|||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return part
|
||||
}
|
||||
|
|
|
@ -53,6 +53,7 @@ export default function (part) {
|
|||
.line(points.bottomRight.shift(-90, sa).shift(0, sa))
|
||||
.attr('class', 'help')
|
||||
}
|
||||
}
|
||||
|
||||
if (paperless) {
|
||||
macro('vd', {
|
||||
|
@ -66,7 +67,6 @@ export default function (part) {
|
|||
y: points.bottomRight.y + 15 + sa,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return part
|
||||
}
|
||||
|
|
|
@ -210,6 +210,7 @@ export default function (part) {
|
|||
.close()
|
||||
.attr('class', 'fabric sa')
|
||||
}
|
||||
}
|
||||
|
||||
if (paperless) {
|
||||
// Help construct crotch seam
|
||||
|
@ -316,7 +317,6 @@ export default function (part) {
|
|||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return part
|
||||
}
|
||||
|
|
|
@ -73,6 +73,7 @@ export default function (part) {
|
|||
.line(points.pocketBagBottomLeft)
|
||||
.attr('class', 'lining sa')
|
||||
}
|
||||
}
|
||||
|
||||
if (paperless) {
|
||||
macro('hd', {
|
||||
|
@ -96,7 +97,6 @@ export default function (part) {
|
|||
x: points.pocketBagBottomRight.x + 30 + sa,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return part
|
||||
}
|
||||
|
|
|
@ -59,6 +59,7 @@ export default function (part) {
|
|||
.line(points.bottomRight)
|
||||
.attr('class', 'lining sa')
|
||||
}
|
||||
}
|
||||
|
||||
if (paperless) {
|
||||
macro('hd', {
|
||||
|
@ -92,7 +93,6 @@ export default function (part) {
|
|||
d: 15 + sa,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return part
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue