1
0
Fork 0

chore(core): Linter fixes

This commit is contained in:
Joost De Cock 2022-09-15 06:29:10 +02:00
parent a76af50900
commit 56427cc4bd
10 changed files with 43 additions and 91 deletions

View file

@ -393,7 +393,7 @@ function asPath(bezier, debug = false, log = false) {
}
/** Joins path segments together into one path */
function joinPaths(paths, closed = false, log = false) {
function joinPaths(paths, closed = false) {
let joint = new Path(paths[0].debug).withLog(paths[0].log).move(paths[0].ops[0].to)
let current
for (let p of paths) {