From 00f414a9e5f5e89ce5995411d942d50bd18a8466 Mon Sep 17 00:00:00 2001 From: Dave Pagurek Date: Sat, 14 Dec 2024 15:10:56 -0500 Subject: [PATCH] Remove console logs --- src/image/image.js | 1 - src/shape/custom_shapes.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/image/image.js b/src/image/image.js index 9c1e9f9ee1..7db4af9ab4 100644 --- a/src/image/image.js +++ b/src/image/image.js @@ -327,7 +327,6 @@ function image(p5, fn){ } htmlCanvas.toBlob(blob => { - console.log("here"); fn.downloadFile(blob, filename, extension); if(temporaryGraphics) temporaryGraphics.remove(); }, mimeType); diff --git a/src/shape/custom_shapes.js b/src/shape/custom_shapes.js index 587905e422..aadfead8d9 100644 --- a/src/shape/custom_shapes.js +++ b/src/shape/custom_shapes.js @@ -871,8 +871,6 @@ class Shape { */ #generalVertex(kind, position, textureCoordinates) { let vertexKind = kind; - console.log(this.contours) - console.log(this.at(-1)) let lastContourKind = this.at(-1).kind; let vertex = this.#createVertex(position, textureCoordinates);