1
0
Fork 0

feat(brian): Allow shifting of the shoulder seam

This adds two new options to brian:

 - `s3Armhole`
 - `s3Collar`

s3 in this case is short for: Shoulder Seam Shift.

This option allows you to shift the shoulder seam forward
(by increasing the option) or backward (be decreasing it).
And this for the collar side and armhole/shoulder side.

This is in preparation of the feature request in #642.
This commit is contained in:
Joost De Cock 2021-06-12 14:05:28 +02:00
parent 62ec2682e5
commit 2bf10c0f75
9 changed files with 268 additions and 52 deletions

View file

@ -18,6 +18,7 @@ export default {
'lengthBonus',
'sleeveLengthBonus',
],
style: [ 's3Collar', 's3Armhole' ],
advanced: [
'acrossBackFactor',
'armholeDepthFactor',
@ -91,6 +92,9 @@ export default {
lengthBonus: { pct: 0, min: -4, max: 60 },
shoulderEase: { pct: 0, min: -2, max: 6 },
shoulderSlopeReduction: { pct: 0, min: 0, max: 80 },
// s3 is short for Shoulder Seam Shift
s3Collar: { pct: 0, min: -100, max: 100 },
s3Armhole: { pct: 0, min: -100, max: 100 },
sleevecapEase: { pct: 1, min: 0, max: 10 },
sleevecapTopFactorX: { pct: 50, min: 25, max: 75 },
sleevecapTopFactorY: { pct: 100, min: 35, max: 165 },