From 95259f48bc509d09dba76875dbe740196208ef12 Mon Sep 17 00:00:00 2001 From: mmcw-dev Date: Wed, 27 Dec 2017 16:49:31 -0500 Subject: [PATCH] Use 8.5inch default width for A4 paper --- example/index.html | 2 +- src/bellows.js | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/example/index.html b/example/index.html index 5f432fb..054f1c9 100644 --- a/example/index.html +++ b/example/index.html @@ -79,7 +79,7 @@ input{
- in + in
diff --git a/src/bellows.js b/src/bellows.js index 6b59d91..fdd863f 100644 --- a/src/bellows.js +++ b/src/bellows.js @@ -16,8 +16,6 @@ if (!browser) { createCanvas = require('canvas').createCanvas } - - function line (ctx, rgba, start, end) { ctx.strokeStyle = `rgba(${rgba})` ctx.beginPath() @@ -78,10 +76,9 @@ function taper (back, front, length, pos) { * * @example * Generate the default square bellows in 2 parts and print the string to the console. - * ``` + * * const b = bellows({ parts : 2 }) * console.log(b) - * ``` */ function bellows (options = {}) { @@ -91,7 +88,7 @@ function bellows (options = {}) { let dpi = options.dpi || 300 const MM = dpi / IN - let pageW = options.pageW || dpi * 11 + let pageW = options.pageW || dpi * 8.5 let pageH = options.pageH || dpi * 11 let frontIW = options.frontIW || Math.round(MM * 40)