1
0
Fork 0

chore(shin): Ported shin to new measurements. See #416

This commit is contained in:
Joost De Cock 2020-06-07 14:00:09 +02:00
parent 4104b03fc2
commit 6170b8cf40
3 changed files with 38 additions and 33 deletions

View file

@ -1,24 +1,20 @@
import { version } from "../package.json";
import { version } from '../package.json'
export default {
name: "shin",
name: 'shin',
version: version,
design: "Joost De Cock",
code: "Joost De Cock",
department: "menswear",
type: "pattern",
design: 'Joost De Cock',
code: 'Joost De Cock',
department: 'menswear',
type: 'pattern',
difficulty: 2,
tags: ["swimwear", "bottom"],
tags: ['swimwear', 'bottom'],
optionGroups: {
fit: ["bulge", "backRise", "legReduction", "stretch"],
style: ["lengthBonus", "rise"]
fit: ['bulge', 'backRise', 'legReduction', 'stretch'],
style: ['lengthBonus', 'rise']
},
measurements: [
"hipsCircumference",
"upperLegCircumference",
"hipsToUpperLeg"
],
parts: ["back", "front", "waistband"],
measurements: ['hipsCircumference', 'upperLegCircumference', 'waistToUpperLeg', 'waistToHips'],
parts: ['back', 'front', 'waistband'],
options: {
// Constants
frontFactor: 0.58,
@ -37,4 +33,4 @@ export default {
rise: { pct: 0, min: 0, max: 25 },
backRise: { pct: 5, min: 0, max: 10 }
}
};
}