Skip to main content

bibi

note

This design is part of the FreeSewing collection

Named exports

  • Bibi: The design constructor
  • about: Metadata about the design
  • adjustSidePoints: The adjustSidePoints part of the design
  • armholeBinding: The armholeBinding part of the design
  • back: The back part of the design
  • calculateFba: The calculateFba part of the design
  • constructBackHem: The constructBackHem part of the design
  • constructBackPoints: The constructBackPoints part of the design
  • constructFrontHem: The constructFrontHem part of the design
  • constructFrontPoints: The constructFrontPoints part of the design
  • constructSideSeam: The constructSideSeam part of the design
  • correctArmHole: The correctArmHole part of the design
  • createArmHoles: The createArmHoles part of the design
  • cuff: The cuff part of the design
  • draftKnitBinding: The draftKnitBinding part of the design
  • draftRibbing: The draftRibbing part of the design
  • front: The front part of the design
  • i18n: Internationalisation (i18n/translation) data for the design
  • neckBinding: The neckBinding part of the design
  • plotSideLineMeasurements: The plotSideLineMeasurements part of the design
  • sleeve: The sleeve part of the design
  • waistband: 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'