From 7e867bc89b2c3077d70a486f59a7e5becb8c9fff Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Mon, 29 Jan 2018 14:13:40 -0500 Subject: [PATCH] Define fold as a variable, not a dependent --- example/index.html | 6 ++++++ src/bellows.js | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/example/index.html b/example/index.html index 4d4115d..1fe4aef 100644 --- a/example/index.html +++ b/example/index.html @@ -75,6 +75,10 @@ input{ mm +
+ + mm +
@@ -138,6 +142,7 @@ input{ const frontIH = Math.round($('frontIH').value * MM); const maxLength = Math.round($('maxLength').value * MM); + const fold = Math.round($('fold').value * MM); const align = Math.round($('align').value); let parts = Math.round($('parts').value); @@ -161,6 +166,7 @@ input{ frontIW : frontIW, frontOH : frontOH, frontIH : frontIH, + fold : fold, maxLength : maxLength, parts : parts, diff --git a/src/bellows.js b/src/bellows.js index ccad989..106d3ad 100644 --- a/src/bellows.js +++ b/src/bellows.js @@ -124,6 +124,8 @@ function bellows (options = {}) { let backIH = options.backIH || Math.round(MM * 40) let backOH = options.backOH || Math.round(MM * 50) + let fold = options.fold || (frontOW - frontIW) / 2 + let align = options.align || 0 //adjust the alignment (find formula) let maxLength = options.maxLength || MM * 280 @@ -135,7 +137,6 @@ function bellows (options = {}) { let key = (typeof options.key !== 'undefined' && options.key === false) ? false : true let over = (typeof options.overlap !== 'undefined' && options.overlap === false) ? false : true - let fold = (frontOW - frontIW) / 2 let folds = Math.floor(maxLength / fold) let length = folds * fold