chore(jaeger) Removed circumference suffix from measurements
This commit is contained in:
parent
257bbfeaae
commit
b3483b30b2
9 changed files with 30 additions and 36 deletions
|
@ -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'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue