1
0
Fork 0

feat(paco): Extended heal ease option, added new options

This commit slightly increases the default heel ease value, but
also significantly increases the range of the option so that
people can make the leg wider.
This is in response to some people who found the original
design to tight on the calfs.

This also adds the crossSeamAngle and crotchSeamAngle
options from the upstream Titan block.

These angles allow you to influence how the crossSeam
and crotchSeam reach the fork.
Setting both of them to zero will give the same result
as the pattern before this commit.

Since their defaults are not zero, this will change the
out-of-the-box pattern (in addition to the added heal ease).
This commit is contained in:
Joost De Cock 2021-03-14 11:44:22 +01:00
parent 6acdae9de2
commit a08eca0d09
2 changed files with 7 additions and 1 deletions

View file

@ -9,6 +9,8 @@
- Added the crotchSeamCurveAngle option - Added the crotchSeamCurveAngle option
Changed: Changed:
paco:
- Extended range and inreased default of the healEase option
titan: titan:
- Crotch- and Cross seam have been redrawn using the new angle options - Crotch- and Cross seam have been redrawn using the new angle options

View file

@ -17,8 +17,10 @@ export default {
advanced: [ advanced: [
'crossSeamCurveStart', 'crossSeamCurveStart',
'crossSeamCurveBend', 'crossSeamCurveBend',
'crossSeamCurveAngle',
'crotchSeamCurveStart', 'crotchSeamCurveStart',
'crotchSeamCurveBend', 'crotchSeamCurveBend',
'crotchSeamCurveAngle',
'grainlinePosition', 'grainlinePosition',
'legBalance', 'legBalance',
'waistBalance' 'waistBalance'
@ -93,7 +95,7 @@ export default {
// Elastic // Elastic
waistElastic: { mm: 35, min: 10, max: 60 }, waistElastic: { mm: 35, min: 10, max: 60 },
ankleElastic: { mm: 70, min: 10, max: 130 }, ankleElastic: { mm: 70, min: 10, max: 130 },
heelEase: { pct: 2.5, min: 0, max: 5 }, heelEase: { pct: 5, min: 0, max: 50 },
// Pockets // Pockets
frontPockets: { bool: true }, frontPockets: { bool: true },
@ -103,8 +105,10 @@ export default {
legBalance: { pct: 57.5, min: 52.5, max: 62.5 }, legBalance: { pct: 57.5, min: 52.5, max: 62.5 },
crossSeamCurveStart: { pct: 85, min: 60, max: 100 }, crossSeamCurveStart: { pct: 85, min: 60, max: 100 },
crossSeamCurveBend: { pct: 65, min: 45, max: 85 }, crossSeamCurveBend: { pct: 65, min: 45, max: 85 },
crossSeamCurveAngle: { deg: 12, min: 0, max: 20 },
crotchSeamCurveStart: { pct: 80, min: 60, max: 95 }, crotchSeamCurveStart: { pct: 80, min: 60, max: 95 },
crotchSeamCurveBend: { pct: 80, min: 45, max: 100 }, crotchSeamCurveBend: { pct: 80, min: 45, max: 100 },
crotchSeamCurveAngle: { deg: 25, min: 0, max: 35 },
waistBalance: { pct: 60, min: 30, max: 90 }, waistBalance: { pct: 60, min: 30, max: 90 },
grainlinePosition: { pct: 45, min: 30, max: 60 } grainlinePosition: { pct: 45, min: 30, max: 60 }
} }