diff --git a/packages/element/src/collision.ts b/packages/element/src/collision.ts index fd6f63c85..dce9513e4 100644 --- a/packages/element/src/collision.ts +++ b/packages/element/src/collision.ts @@ -224,13 +224,11 @@ const intersectLinearOrFreeDrawWithLineSegment = ( for (const shape of shapes) { switch (true) { case isCurve(shape): - //debugDrawCubicBezier(shape); intersections.push( ...curveIntersectLineSegment(shape as Curve, segment), ); continue; case isLineSegment(shape): - //debugDrawLine(shape); const point = lineSegmentIntersectionPoints( segment, shape as LineSegment,