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 { import {
KEYS, KEYS,
arrayToMap, arrayToMap,
debugDrawPoint,
getFeatureFlag, getFeatureFlag,
invariant, invariant,
isTransparent, isTransparent,

View File

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