2022-09-05 10:35:01 -07:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
|
|
|
// Parts
|
|
|
|
import { frontpoints } from './frontpoints.mjs'
|
|
|
|
import { front } from './front.mjs'
|
|
|
|
import { back } from './back.mjs'
|
|
|
|
import { legband } from './legband.mjs'
|
|
|
|
import { legbandKeystone } from './legbandkeystone.mjs'
|
|
|
|
import { waistband } from './waistband.mjs'
|
|
|
|
import { pocketFacing } from './pocketfacing.mjs'
|
|
|
|
import { pocket } from './pocket.mjs'
|
|
|
|
import { zipperguard } from './zipperguard.mjs'
|
2021-02-18 07:47:53 -08:00
|
|
|
// import draftPlacket from './placket'
|
2021-02-02 06:57:24 -08:00
|
|
|
|
|
|
|
// Create new design
|
2022-09-05 10:35:01 -07:00
|
|
|
const Cornelius = new Design({
|
|
|
|
data,
|
|
|
|
parts: [
|
|
|
|
front, back, legband, legbandKeystone, waistband, pocketFacing,
|
|
|
|
pocket, zipperguard,
|
|
|
|
]
|
|
|
|
})
|
2021-02-02 06:57:24 -08:00
|
|
|
|
2022-06-14 13:09:09 +02:00
|
|
|
// Named exports
|
2022-09-05 10:35:01 -07:00
|
|
|
export {
|
|
|
|
front, back, legband, legbandKeystone, waistband, pocketFacing,
|
|
|
|
pocket, zipperguard,
|
|
|
|
frontpoints,
|
|
|
|
Cornelius,
|
|
|
|
}
|