diff --git a/packages/tamiko/config/index.js b/packages/tamiko/config/index.js index a70b85b6176..d5b4a46c2c8 100644 --- a/packages/tamiko/config/index.js +++ b/packages/tamiko/config/index.js @@ -13,12 +13,7 @@ export default { fit: ['armholeDepthFactor', 'chestEase', 'shoulderSlope'], style: ['flare', 'lengthBonus', 'shoulderseamLength'] }, - measurements: [ - 'shoulderToShoulder', - 'chestCircumference', - 'centerBackNeckToWaist', - 'naturalWaistToHip' - ], + measurements: ['shoulderToShoulder', 'chestCircumference', 'hpsToHipsBack'], parts: ['top'], options: { armholeDepthFactor: { diff --git a/packages/tamiko/src/top.js b/packages/tamiko/src/top.js index 5ddccdc4c59..cb3aacb9852 100644 --- a/packages/tamiko/src/top.js +++ b/packages/tamiko/src/top.js @@ -21,9 +21,7 @@ export default function(part) { let chest = (measurements.chestCircumference / 2) * (1 + options.chestEase) // Length - let length = - (1 + options.lengthBonus) * - (measurements.centerBackNeckToWaist + measurements.naturalWaistToHip) + let length = (1 + options.lengthBonus) * measurements.hpsToHipsBack // Armhole depth let arm = shoulders * options.armholeDepthFactor