1
0
Fork 0

🚧 Removed lingering console.log

This commit is contained in:
Joost De Cock 2018-08-09 10:48:37 +02:00
parent 0248a1a2ad
commit 62671f0cda

View file

@ -415,11 +415,8 @@ Path.prototype.reverse = function() {
} }
if (op.to) current = op.to; if (op.to) current = op.to;
} }
console.log("sections", sections);
let rev = new Path().move(current); let rev = new Path().move(current);
for (let section of sections.reverse()) { for (let section of sections.reverse()) rev.ops.push(section.ops[1]);
rev.ops.push(section.ops[1]);
}
if (closed) rev.close(); if (closed) rev.close();
return rev; return rev;