2018-07-10 19:27:02 +02:00
|
|
|
/** Pattern parts */
|
2018-07-26 10:03:19 +00:00
|
|
|
export default {
|
|
|
|
name: "brian",
|
|
|
|
parts: ["back", "front", "_sleeve"],
|
2018-07-15 17:13:52 +02:00
|
|
|
measurements: [
|
|
|
|
"bicepsCircumference",
|
|
|
|
"centerBackNeckToWaist",
|
|
|
|
"chestCircumference",
|
|
|
|
"naturalWaistToHip",
|
|
|
|
"neckCircumference",
|
|
|
|
"shoulderSlope",
|
|
|
|
"shoulderToShoulder",
|
|
|
|
"hipsCircumference",
|
|
|
|
"shoulderToWrist",
|
|
|
|
"wristCircumference"
|
|
|
|
],
|
|
|
|
options: [
|
|
|
|
// Constants
|
2018-08-03 17:44:55 +02:00
|
|
|
{ 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
|
2018-08-03 17:44:55 +02:00
|
|
|
{ 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
|
2018-08-05 15:53:09 +02:00
|
|
|
{ id: "frontArmholeDeeper", val: 0.5, type: "%" },
|
2018-08-03 17:44:55 +02:00
|
|
|
{ id: "chestEase", val: 8, type: "%", min: -4, max: 20 },
|
|
|
|
{ id: "collarEase", val: 3.5, type: "%", min: 0, max: 10 },
|
|
|
|
{ id: "bicepsEase", val: 15, type: "%", min: 0, max: 100 },
|
|
|
|
{ id: "backNeckCutout", val: 5, type: "%", min: 2, max: 8 },
|
|
|
|
{ id: "acrossBackFactor", val: 96, type: "%", min: 93, max: 99 },
|
|
|
|
{ id: "armholeDepthFactor", val: 50, type: "%", min: 35, max: 65 },
|
|
|
|
{ id: "sleevecapHeightFactor", val: 55, type: "%", min: 35, max: 75 }
|
2018-07-15 17:13:52 +02:00
|
|
|
]
|
|
|
|
};
|