1
0
Fork 0

chore(carlton): Removed unused hips code

This commit is contained in:
Joost De Cock 2020-07-18 17:55:16 +02:00
parent 90391b86e1
commit 8e4bddf964

View file

@ -7,9 +7,7 @@ export const calculateRatios = (part) => {
// Calculate different values for reducing from chest to hips via waist
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('seat', measurements.seat * (1 + options.seatEase))
store.set('waistReduction', store.get('chest') - store.get('waist'))
store.set('hipsReduction', store.get('chest') - store.get('hips'))
}