1
0
Fork 0

chore(jaeger) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-28 13:08:33 +02:00
parent 257bbfeaae
commit b3483b30b2
9 changed files with 30 additions and 36 deletions

View file

@ -9,9 +9,9 @@ export const calculateRatios = (part) => {
options.rollLineCollarHeight = options.collarHeight * 2
// Calculate different values for reducing from chest to hips via waist
store.set('chest', measurements.chestCircumference * (1 + options.chestEase))
store.set('waist', measurements.waistCircumference * (1 + options.waistEase))
store.set('hips', measurements.hipsCircumference * (1 + options.hipsEase))
store.set('chest', measurements.chest * (1 + options.chestEase))
store.set('waist', measurements.waist * (1 + options.waistEase))
store.set('hips', measurements.hips * (1 + options.hipsEase))
store.set('waistReduction', store.get('chest') - store.get('waist'))
store.set('hipsReduction', store.get('chest') - store.get('hips'))