bibi
This design is part of the FreeSewing collection
Named exports
Bibi: The design constructorabout: Metadata about the designadjustSidePoints: The adjustSidePoints part of the designarmholeBinding: The armholeBinding part of the designback: The back part of the designcalculateFba: The calculateFba part of the designconstructBackHem: The constructBackHem part of the designconstructBackPoints: The constructBackPoints part of the designconstructFrontHem: The constructFrontHem part of the designconstructFrontPoints: The constructFrontPoints part of the designconstructSideSeam: The constructSideSeam part of the designcorrectArmHole: The correctArmHole part of the designcreateArmHoles: The createArmHoles part of the designcuff: The cuff part of the designdraftKnitBinding: The draftKnitBinding part of the designdraftRibbing: The draftRibbing part of the designfront: The front part of the designi18n: Internationalisation (i18n/translation) data for the designneckBinding: The neckBinding part of the designplotSideLineMeasurements: The plotSideLineMeasurements part of the designsleeve: The sleeve part of the designwaistband: The waistband part of the design
Constructor
To create a new bibi Design, import the constructur as such:
import { Bibi } from '@freesewing/bibi'
Then you can instantiate it by passing a settings object:
const pattern = new Bibi(settings)
Design config
You can access the design configuration without instantiating a design.
It is available as the designConfig property of the design constructor:
import { Bibi } from '@freesewing/bibi'
// Access the design config from the constructor
const dConf = Bibi.designConfig
Pattern config
You can access the pattern configuration without instantiating a design.
It is available as the patternConfig property of the design constructor:
import { Bibi } from '@freesewing/bibi'
// Access the pattern config from the constructor
const pConf = Bibi.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/bibi'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/bibi'
Parts
adjustSidePoints
The part itself
You can access this part as the adjustSidePoints named export:
import { adjustSidePoints } from '@freesewing/bibi'
armholeBinding
The part itself
You can access this part as the armholeBinding named export:
import { armholeBinding } from '@freesewing/bibi'
back
The part itself
You can access this part as the back named export:
import { back } from '@freesewing/bibi'
calculateFba
The part itself
You can access this part as the calculateFba named export:
import { calculateFba } from '@freesewing/bibi'
constructBackHem
The part itself
You can access this part as the constructBackHem named export:
import { constructBackHem } from '@freesewing/bibi'
constructBackPoints
The part itself
You can access this part as the constructBackPoints named export:
import { constructBackPoints } from '@freesewing/bibi'
constructFrontHem
The part itself
You can access this part as the constructFrontHem named export:
import { constructFrontHem } from '@freesewing/bibi'
constructFrontPoints
The part itself
You can access this part as the constructFrontPoints named export:
import { constructFrontPoints } from '@freesewing/bibi'
constructSideSeam
The part itself
You can access this part as the constructSideSeam named export:
import { constructSideSeam } from '@freesewing/bibi'
correctArmHole
The part itself
You can access this part as the correctArmHole named export:
import { correctArmHole } from '@freesewing/bibi'
createArmHoles
The part itself
You can access this part as the createArmHoles named export:
import { createArmHoles } from '@freesewing/bibi'
cuff
The part itself
You can access this part as the cuff named export:
import { cuff } from '@freesewing/bibi'
draftKnitBinding
The part itself
You can access this part as the draftKnitBinding named export:
import { draftKnitBinding } from '@freesewing/bibi'
draftRibbing
The part itself
You can access this part as the draftRibbing named export:
import { draftRibbing } from '@freesewing/bibi'
front
The part itself
You can access this part as the front named export:
import { front } from '@freesewing/bibi'
neckBinding
The part itself
You can access this part as the neckBinding named export:
import { neckBinding } from '@freesewing/bibi'
plotSideLineMeasurements
The part itself
You can access this part as the plotSideLineMeasurements named export:
import { plotSideLineMeasurements } from '@freesewing/bibi'
sleeve
The part itself
You can access this part as the sleeve named export:
import { sleeve } from '@freesewing/bibi'
waistband
The part itself
You can access this part as the waistband named export:
import { waistband } from '@freesewing/bibi'