Skip to main content

noble

note

This design is part of the FreeSewing collection

Named exports

Constructor

To create a new noble Design, import the constructur as such:

import { Noble } from '@freesewing/noble'

Then you can instantiate it by passing a settings object:

const pattern = new Noble(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 { Noble } from '@freesewing/noble'

// Access the design config from the constructor
const dConf = Noble.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 { Noble } from '@freesewing/noble'

// Access the pattern config from the constructor
const pConf = Noble.patternConfig

Metadata

You can access the design's metadata through the about named export:

import { about } from '@freesewing/noble'

I18n

You can access the design's internationalization data through the i18n named export:

import { i18n } from '@freesewing/noble'

Parts

backInside

The part itself

You can access this part as the backInside named export:

import { backInside } from '@freesewing/noble'

backOutside

The part itself

You can access this part as the backOutside named export:

import { backOutside } from '@freesewing/noble'

backPoints

The part itself

You can access this part as the backPoints named export:

import { backPoints } from '@freesewing/noble'

frontInside

The part itself

You can access this part as the frontInside named export:

import { frontInside } from '@freesewing/noble'

frontOutside

The part itself

You can access this part as the frontOutside named export:

import { frontOutside } from '@freesewing/noble'

frontPoints

The part itself

You can access this part as the frontPoints named export:

import { frontPoints } from '@freesewing/noble'