From afe115469527e6f45ed7f4d9b838090938f7fa7a Mon Sep 17 00:00:00 2001 From: Orion Reed Date: Mon, 2 Dec 2024 06:37:28 -0500 Subject: [PATCH] remove log --- src/distance-field.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/distance-field.ts b/src/distance-field.ts index a9f3908..613092e 100644 --- a/src/distance-field.ts +++ b/src/distance-field.ts @@ -73,7 +73,6 @@ export class DistanceField extends HTMLElement { * Handles updates to geometry elements by re-initializing seed points and rerunning the JFA. */ private handleGeometryUpdate = () => { - console.log('handleGeometryUpdate'); this.populateSeedPoints(); this.runJumpFloodingAlgorithm(); };