Merge branch 'Noble' of https://github.com/woutervdub/freesewing into Noble
This commit is contained in:
parent
e322bc1a13
commit
4b8ffbfdd7
16 changed files with 34 additions and 138 deletions
|
@ -15,15 +15,28 @@ export default {
|
||||||
optionGroups: {
|
optionGroups: {
|
||||||
type: ['dartPosition'],
|
type: ['dartPosition'],
|
||||||
fit: ['chestEase', 'waistEase', 'bustSpanEase'],
|
fit: ['chestEase', 'waistEase', 'bustSpanEase'],
|
||||||
darts: ['backDartHeight', 'waistDartLength', 'shoulderDartPosition','upperDartLength','armholeDartPosition'],
|
darts: [
|
||||||
|
'backDartHeight',
|
||||||
|
'waistDartLength',
|
||||||
|
'shoulderDartPosition',
|
||||||
|
'upperDartLength',
|
||||||
|
'armholeDartPosition',
|
||||||
|
],
|
||||||
armhole: [
|
armhole: [
|
||||||
'armholeDepth',
|
'armholeDepth',
|
||||||
'backArmholeSlant',
|
'backArmholeSlant',
|
||||||
'backArmholeCurvature',
|
'backArmholeCurvature',
|
||||||
|
'frontArmholeCurvature',
|
||||||
'frontArmholePitchDepth',
|
'frontArmholePitchDepth',
|
||||||
'backArmholePitchDepth',
|
'backArmholePitchDepth',
|
||||||
],
|
],
|
||||||
advanced: ['backNeckCutout', 'backHemSlope', 'frontShoulderWidth', 'highBustWidth', 'shoulderToShoulderEase'],
|
advanced: [
|
||||||
|
'backNeckCutout',
|
||||||
|
'backHemSlope',
|
||||||
|
'frontShoulderWidth',
|
||||||
|
'highBustWidth',
|
||||||
|
'shoulderToShoulderEase',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
measurements: [
|
measurements: [
|
||||||
'chest',
|
'chest',
|
||||||
|
@ -34,14 +47,12 @@ export default {
|
||||||
'hpsToWaistBack',
|
'hpsToWaistBack',
|
||||||
'shoulderToShoulder',
|
'shoulderToShoulder',
|
||||||
'shoulderSlope',
|
'shoulderSlope',
|
||||||
// ],
|
|
||||||
// optionalMeasurements: [
|
|
||||||
'highBust',
|
'highBust',
|
||||||
'underbust',
|
'underbust',
|
||||||
'bustSpan',
|
'bustSpan',
|
||||||
'hpsToBust',
|
'hpsToBust',
|
||||||
],
|
],
|
||||||
hide: ['bellaFrontSideDart', 'bellaBack', 'backPoints', 'frontPoints',],
|
hide: ['bellaFrontSideDart', 'bellaBack', 'backPoints', 'frontPoints'],
|
||||||
inject: {
|
inject: {
|
||||||
...Bella.config.inject,
|
...Bella.config.inject,
|
||||||
backPoints: 'bellaBack',
|
backPoints: 'bellaBack',
|
||||||
|
@ -59,16 +70,9 @@ export default {
|
||||||
backOutside: 'backPoints',
|
backOutside: 'backPoints',
|
||||||
frontPoints: 'bellaBack',
|
frontPoints: 'bellaBack',
|
||||||
frontInside: 'frontPoints',
|
frontInside: 'frontPoints',
|
||||||
frontOutside: ['frontPoints','frontInside'],
|
frontOutside: ['frontPoints', 'frontInside'],
|
||||||
},
|
},
|
||||||
parts: [
|
parts: ['backPoints', 'backInside', 'backOutside', 'frontPoints', 'frontInside', 'frontOutside'],
|
||||||
'backPoints',
|
|
||||||
'backInside',
|
|
||||||
'backOutside',
|
|
||||||
'frontPoints',
|
|
||||||
'frontInside',
|
|
||||||
'frontOutside',
|
|
||||||
],
|
|
||||||
options: {
|
options: {
|
||||||
// Constants
|
// Constants
|
||||||
acrossBackFactor: 0.925,
|
acrossBackFactor: 0.925,
|
||||||
|
@ -79,6 +83,8 @@ export default {
|
||||||
backDartLocation: 0.145,
|
backDartLocation: 0.145,
|
||||||
backCenterWaistReduction: 0.35,
|
backCenterWaistReduction: 0.35,
|
||||||
collarFactor: 0.19,
|
collarFactor: 0.19,
|
||||||
|
bustDartCurve: 1,
|
||||||
|
bustDartLength: 0.9,
|
||||||
|
|
||||||
// Percentages
|
// Percentages
|
||||||
backNeckCutout: { pct: 6, min: 3, max: 9 },
|
backNeckCutout: { pct: 6, min: 3, max: 9 },
|
||||||
|
@ -97,13 +103,20 @@ export default {
|
||||||
frontArmholePitchDepth: { pct: 29, max: 31, min: 27 },
|
frontArmholePitchDepth: { pct: 29, max: 31, min: 27 },
|
||||||
backArmholePitchDepth: { pct: 35, max: 40, min: 30 },
|
backArmholePitchDepth: { pct: 35, max: 40, min: 30 },
|
||||||
highBustWidth: { pct: 86, max: 92, min: 80 },
|
highBustWidth: { pct: 86, max: 92, min: 80 },
|
||||||
bustDartLength: { pct: 90, min: 75, max: 100 },
|
|
||||||
waistDartLength: { pct: 90, min: 75, max: 95 },
|
waistDartLength: { pct: 90, min: 75, max: 95 },
|
||||||
bustDartCurve: { pct: 100, min: 0, max: 100 },
|
|
||||||
upperDartLength: { pct: 90, min: 80, max: 95 },
|
upperDartLength: { pct: 90, min: 80, max: 95 },
|
||||||
dartPosition: { dflt: 'shoulder', list: ['shoulder','armhole'] },
|
dartPosition: { dflt: 'shoulder', list: ['shoulder', 'armhole'] },
|
||||||
shoulderDartPosition: { pct: 50, min: 10, max: 90, hide: ({options}) => (options.dartPosition != 'shoulder') },
|
shoulderDartPosition: {
|
||||||
armholeDartPosition: { pct: 50, min: 10, max: 90, hide: ({options}) => (options.dartPosition == 'shoulder') },
|
pct: 50,
|
||||||
}
|
min: 10,
|
||||||
|
max: 90,
|
||||||
|
hide: ({ options }) => options.dartPosition != 'shoulder',
|
||||||
|
},
|
||||||
|
armholeDartPosition: {
|
||||||
|
pct: 50,
|
||||||
|
min: 10,
|
||||||
|
max: 90,
|
||||||
|
hide: ({ options }) => options.dartPosition == 'shoulder',
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart curve"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart curve** option controls the curvature of the bust dart. From straight to slightly curved.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,10 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart curve"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart curve** option controls the curvature of the bust dart.
|
|
||||||
From straight to slightly curved.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart curve"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart curve** option controls the curvature of the bust dart. From straight to slightly curved.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart curve"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart curve** option controls the curvature of the bust dart. From straight to slightly curved.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart curve"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart curve** option controls the curvature of the bust dart. From straight to slightly curved.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart length"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart length** option controls the length of the bust dart. The maximum length brings the dart all the way to the bust apex.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,10 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart length"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart length** option controls the length of the bust dart.
|
|
||||||
The maximum length brings the dart all the way to the bust apex.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart length"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart length** option controls the length of the bust dart. The maximum length brings the dart all the way to the bust apex.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart length"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart length** option controls the length of the bust dart. The maximum length brings the dart all the way to the bust apex.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "Bust dart length"
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The **bust dart length** option controls the length of the bust dart. The maximum length brings the dart all the way to the bust apex.
|
|
||||||
|
|
||||||
## Effect of this option on the pattern
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
title: "Dart position"
|
|
||||||
---
|
|
||||||
|
|
||||||
The **Dart position** option controls whether to create the princess seam at the shoulder or armhole.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
title: "Dart position"
|
|
||||||
---
|
|
||||||
|
|
||||||
The **Dart position** option controls whether to create the princess seam at the shoulder or armhole.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
title: "Posición de la pinza"
|
|
||||||
---
|
|
||||||
|
|
||||||
La opción de **posición de la pinza** controla si crear el corte princesa en el hombro o la sisa.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
title: "Dart position"
|
|
||||||
---
|
|
||||||
|
|
||||||
The **Dart position** option controls whether to create the princess seam at the shoulder or armhole.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
title: "Dart position"
|
|
||||||
---
|
|
||||||
|
|
||||||
The **Dart position** option controls whether to create the princess seam at the shoulder or armhole.
|
|
Loading…
Add table
Add a link
Reference in a new issue