Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
davepagurek committed Dec 14, 2024
1 parent fe78cfe commit 00f414a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/image/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ function image(p5, fn){
}

htmlCanvas.toBlob(blob => {
console.log("here");
fn.downloadFile(blob, filename, extension);
if(temporaryGraphics) temporaryGraphics.remove();
}, mimeType);
Expand Down
2 changes: 0 additions & 2 deletions src/shape/custom_shapes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 00f414a

Please sign in to comment.