chore: Remove debug

This commit is contained in:
Mark Tolmacs
2025-11-07 17:25:18 +01:00
parent c75e09422e
commit ecfbdf8c48
2 changed files with 0 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
import {
KEYS,
arrayToMap,
debugDrawPoint,
getFeatureFlag,
invariant,
isTransparent,

View File

@@ -1,5 +1,4 @@
import {
debugDrawLine,
DEFAULT_ADAPTIVE_RADIUS,
DEFAULT_PROPORTIONAL_RADIUS,
invariant,
@@ -588,10 +587,6 @@ export const projectFixedPointOntoDiagonal = (
const d1 = p1 && pointDistance(a, p1);
const d2 = p2 && pointDistance(a, p2);
// debugDrawLine(diagonalOne, { color: "purple" });
// debugDrawLine(diagonalTwo, { color: "purple" });
// debugDrawLine(intersector, { color: "orange" });
if (d1 != null && d2 != null) {
return d1 < d2 ? p1 : p2;
}