2018-07-19 13:14:50 +00:00
|
|
|
import F from 'freesewing'
|
2018-07-21 18:51:52 +02:00
|
|
|
import cutonfold from '@freesewing-plugins/macro-cutonfold'
|
2018-07-15 18:57:27 +02:00
|
|
|
import * as patternConfig from '../config/config'
|
2018-07-19 13:14:50 +00:00
|
|
|
import back from './back'
|
2018-07-15 18:57:27 +02:00
|
|
|
|
2018-07-21 18:51:52 +02:00
|
|
|
var brian = new F.pattern(patternConfig)
|
|
|
|
.withPlugin(cutonfold);
|
2018-07-15 18:57:27 +02:00
|
|
|
|
2018-07-19 14:43:27 +00:00
|
|
|
brian.draft = function()
|
2018-07-19 13:14:50 +00:00
|
|
|
{
|
2018-07-19 14:43:27 +00:00
|
|
|
back.draft(brian.parts.back, brian.context);
|
2018-07-15 18:57:27 +02:00
|
|
|
|
|
|
|
return brian;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = brian;
|