1
0
Fork 0
freesewing/packages/cornelius/config/index.js

42 lines
819 B
JavaScript
Raw Normal View History

2021-02-02 06:57:24 -08:00
import { version } from '../package.json'
export default {
name: 'cornelius',
version,
design: 'Wouter Van Wageningen',
code: 'Wouter Van Wageningen',
department: 'unisex',
type: 'pattern',
difficulty: 6,
tags: ['pants'],
optionGroups: {
2021-02-09 07:20:18 -08:00
fit: ['fullness'],
style: []
2021-02-02 06:57:24 -08:00
},
2021-02-10 07:19:15 -08:00
parts: ['front','back','legband'],
inject: {
back: 'front'
},
2021-02-02 06:57:24 -08:00
measurements: ['waist', 'hips', 'inseam', 'seat', 'waistToKnee', 'waistToFloor', 'knee'],
2021-02-10 07:19:15 -08:00
dependencies: {
back: 'front',
legband: 'front'
},
2021-02-02 06:57:24 -08:00
hide: [],
options: {
pctAtoO: 50,
pctAtoC: 25,
pctUtoA: 25,
pctJtoA: 25,
pctZtoR: 35,
pctRtoZin: 75,
pctRtoZup: 25,
pctRtoKin: 75,
pctRtoKdown: 25,
pctKtoRout: 15,
pctKtoRup: 25,
pctKtoH: 70,
2021-02-09 07:20:18 -08:00
fullness: { pct: 0, min: 0, max: 35 },
2021-02-02 06:57:24 -08:00
}
}