Skip to main content

skully

note

This design is part of the FreeSewing collection

Named exports

  • Skully: The design constructor
  • about: Metadata about the design
  • cheek: The cheek part of the design
  • cheekbone: The cheekbone part of the design
  • eye: The eye part of the design
  • forehead: The forehead part of the design
  • head1: The head1 part of the design
  • head2: The head2 part of the design
  • head3: The head3 part of the design
  • i18n: Internationalisation (i18n/translation) data for the design
  • jawfloor: The jawfloor part of the design
  • lowerjaw: The lowerjaw part of the design
  • lowermouth: The lowermouth part of the design
  • nose: The nose part of the design
  • uppermouth: The uppermouth part of the design

Constructor

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

import { Skully } from '@freesewing/skully'

Then you can instantiate it by passing a settings object:

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

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

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

Metadata

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

import { about } from '@freesewing/skully'

I18n

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

import { i18n } from '@freesewing/skully'

Parts

cheek

The part itself

You can access this part as the cheek named export:

import { cheek } from '@freesewing/skully'

cheekbone

The part itself

You can access this part as the cheekbone named export:

import { cheekbone } from '@freesewing/skully'

eye

The part itself

You can access this part as the eye named export:

import { eye } from '@freesewing/skully'

forehead

The part itself

You can access this part as the forehead named export:

import { forehead } from '@freesewing/skully'

head1

The part itself

You can access this part as the head1 named export:

import { head1 } from '@freesewing/skully'

head2

The part itself

You can access this part as the head2 named export:

import { head2 } from '@freesewing/skully'

head3

The part itself

You can access this part as the head3 named export:

import { head3 } from '@freesewing/skully'

jawfloor

The part itself

You can access this part as the jawfloor named export:

import { jawfloor } from '@freesewing/skully'

lowerjaw

The part itself

You can access this part as the lowerjaw named export:

import { lowerjaw } from '@freesewing/skully'

lowermouth

The part itself

You can access this part as the lowermouth named export:

import { lowermouth } from '@freesewing/skully'

nose

The part itself

You can access this part as the nose named export:

import { nose } from '@freesewing/skully'

uppermouth

The part itself

You can access this part as the uppermouth named export:

import { uppermouth } from '@freesewing/skully'