2018-07-10 19:27:02 +02:00
|
|
|
/** Pattern parts */
|
2018-07-23 19:37:49 +02:00
|
|
|
export var config = {
|
2018-07-15 17:13:52 +02:00
|
|
|
parts: [
|
2018-07-19 13:14:50 +00:00
|
|
|
"back",
|
|
|
|
"front",
|
|
|
|
"_sleeve"
|
2018-07-15 17:13:52 +02:00
|
|
|
],
|
|
|
|
measurements: [
|
|
|
|
"bicepsCircumference",
|
|
|
|
"centerBackNeckToWaist",
|
|
|
|
"chestCircumference",
|
|
|
|
"naturalWaistToHip",
|
|
|
|
"neckCircumference",
|
|
|
|
"shoulderSlope",
|
|
|
|
"shoulderToShoulder",
|
|
|
|
"hipsCircumference",
|
|
|
|
"shoulderToWrist",
|
|
|
|
"wristCircumference"
|
|
|
|
],
|
|
|
|
options: [
|
|
|
|
// Constants
|
|
|
|
{ "id": "backNeckCutout", "val": 20, "type": "constant"},
|
|
|
|
{ "id": "bicepsEase", "val": 50, "type": "constant"},
|
|
|
|
{ "id": "collarEase", "val": 15, "type": "constant"},
|
|
|
|
{ "id": "frontArmholeExtra", "val": 5, "type": "constant"},
|
|
|
|
{ "id": "shoulderSlopeReduction", "val": 0, "type": "constant"},
|
|
|
|
{ "id": "sleevecapEase", "val": 5, "type": "constant"},
|
|
|
|
{ "id": "collarFactor", "val":4.8, "type": "constant"},
|
2018-07-10 12:21:17 +00:00
|
|
|
|
2018-07-15 17:13:52 +02:00
|
|
|
// Measures
|
|
|
|
{ "id": "bicepsEase", "val": 50, "min": 30, "max": 80 },
|
|
|
|
{ "id": "chestEase", "val": 30, "min": -40, "max": 160 },
|
|
|
|
{ "id": "shoulderEase", "val": 0, "min": -20, "max": 60 },
|
|
|
|
{ "id": "cuffEase", "val": 45, "min": 0, "max": 100 },
|
|
|
|
{ "id": "lengthBonus", "val": 0, "min": -40, "max": 120 },
|
|
|
|
{ "id": "sleeveLengthBonus", "val": 0, "min": -40, "max": 80 },
|
2018-07-10 19:27:02 +02:00
|
|
|
|
2018-07-15 17:13:52 +02:00
|
|
|
// Percentages
|
|
|
|
{ "id": "acrossBackFactor", "val": 96, "type": "percentage", "min": 93, "max": 99 },
|
2018-07-19 13:14:50 +00:00
|
|
|
{ "id": "armholeDepthFactor", "val": 50, "type": "percentage", "min": 35, "max": 65 },
|
2018-07-15 17:13:52 +02:00
|
|
|
{ "id": "sleevecapHeightFactor", "val": 55, "type": "percentage", "min": 35, "max": 75 }
|
|
|
|
]
|
|
|
|
};
|
2018-07-10 19:27:02 +02:00
|
|
|
|