Remove comment

This commit is contained in:
Mark Tolmacs 2025-05-17 18:50:10 +02:00
parent 6e06fe9fda
commit 076b1e0e31
No known key found for this signature in database

View File

@ -224,13 +224,11 @@ const intersectLinearOrFreeDrawWithLineSegment = (
for (const shape of shapes) {
switch (true) {
case isCurve(shape):
//debugDrawCubicBezier(shape);
intersections.push(
...curveIntersectLineSegment(shape as Curve<GlobalPoint>, segment),
);
continue;
case isLineSegment(shape):
//debugDrawLine(shape);
const point = lineSegmentIntersectionPoints(
segment,
shape as LineSegment<GlobalPoint>,