Remove console log that destroyed performance

master
mightyalex200 2018-04-04 19:23:28 -04:00
parent 2421be5a9a
commit aeefaea537
1 changed files with 0 additions and 1 deletions

View File

@ -52,7 +52,6 @@ function draw() {
for (const point of points) {
const scaledPoint = scalePoint(point);
for (const lineFolder of lineFolders) {
console.log(lineFolder);
const folderPoint = scalePoint(points[(points.indexOf(point) + lineFolder.options.offset) % points.length]);
line(scaledPoint.x, scaledPoint.y, folderPoint.x, folderPoint.y);
}