Generate a simple bellows folding pattern
Go to file
mmcw-dev 86e705c2de Optionally show a key explaining the folding directions.
Show correct colored dash lines for folds
2017-12-27 18:11:50 -05:00
docs Optionally show a key explaining the folding directions. 2017-12-27 18:11:50 -05:00
example Move example to docs for Github Pages 2017-12-27 17:03:48 -05:00
src Optionally show a key explaining the folding directions. 2017-12-27 18:11:50 -05:00
.gitignore Created bellows library 2017-12-27 16:43:55 -05:00
.npmignore Created bellows library 2017-12-27 16:43:55 -05:00
README.md Update documentation to use better jsdoc2md format 2017-12-27 16:56:26 -05:00
package-lock.json Created bellows library 2017-12-27 16:43:55 -05:00
package.json Optionally show a key explaining the folding directions. 2017-12-27 18:11:50 -05:00

README.md

bellows

Example

const bellows = require('bellows')

bellows([options]) ⏏

Kind: Exported function
Typicalname:bellows: Generate bellows pattern for cutting and folding.

Param Type Description
[options] Object Bellows configuration options
[options.dpi] Integer DPI of the image
[options.pageW] Integer Page width in pixels
[options.pageH] Integer Page height in pixels
[options.frontIW] Integer Front inner width of bellows in pixels
[options.frontOW] Integer Front outer width of bellows in pixels
[options.frontIH] Integer Front inner height of bellows in pixels
[options.frontOH] Integer Front outer height of bellows in pixels
[options.backIW] Integer Back inner width of bellows in pixels
[options.backOW] Integer Back outer width of bellows in pixels
[options.backIH] Integer Back inner height of bellows in pixels
[options.backOH] Integer Back outer height of bellows in pixels
[options.maxLength] Integer Maximum length of bellows in pixels
[options.align] Integer Vertical alignment adjustment in pixels
[options.parts] Integer Number of parts to split pattern into: 1, 2, or 4 returns {String} Base64 encoded png data

Example

const b = bellows({ parts : 2 })
console.log(b)