1
0
Fork 0

fix(simon): Support drafting for non-human measurements

Closes #1319
This commit is contained in:
joostdecock 2021-09-12 15:29:59 +02:00
parent 569ddedef8
commit 3a283f5b7e
28 changed files with 130 additions and 117 deletions

View file

@ -33,7 +33,7 @@ Pattern.prototype.draftBackBase = function (part) {
return new Brian(this.settings).draftBack(part)
}
Pattern.prototype.draftSleeveBase = function (part) {
let brian = new Brian(this.settings)
const brian = new Brian(this.settings)
return brian.draftSleeve(brian.draftSleevecap(part))
}
Pattern.prototype.draftBack = draftBack