Merge pull request #6002 from freesewing/joost
fix(brian): Take biceps ease into account for armhole depth
This commit is contained in:
commit
db6fb29e3a
2 changed files with 4 additions and 1 deletions
|
@ -26,6 +26,8 @@ Unreleased:
|
||||||
- Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4.
|
- Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4.
|
||||||
|
|
||||||
Fixed:
|
Fixed:
|
||||||
|
brian:
|
||||||
|
- Take biceps ease into account when calculating armhole depth
|
||||||
carlton:
|
carlton:
|
||||||
- Fixed a stray seam allowance path on the collar
|
- Fixed a stray seam allowance path on the collar
|
||||||
charlie:
|
charlie:
|
||||||
|
|
|
@ -109,7 +109,8 @@ export const base = {
|
||||||
// The new way uses the waistToArmpit measurement
|
// The new way uses the waistToArmpit measurement
|
||||||
points.cbArmhole = new Point(
|
points.cbArmhole = new Point(
|
||||||
0,
|
0,
|
||||||
points.cbWaist.y - measurements.waistToArmpit * (1 - options.armholeDepth)
|
points.cbWaist.y -
|
||||||
|
measurements.waistToArmpit * (1 - options.armholeDepth - options.bicepsEase / 2)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue