Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronPlave committed Dec 8, 2023
1 parent d82d974 commit 2c313fc
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/components/timeline/LayerLine.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -155,18 +155,6 @@
// TODO could also just do this when finalPoints < drawWidth but might be less performant?
if (Math.abs(finalPoints.length - pointsInView.length) < 4) {
drawPointsRequest = window.requestAnimationFrame(() => drawPoints(finalPoints));
// finalPoints.forEach(point => {
// const { id, radius, x, y } = point;
// // quadtree.add({ id, x, y });
// visiblePointsById[id] = point;
// const fill = lineColor;
// ctx.fillStyle = fill;
// ctx.lineWidth = lineWidth;
// const circle = new Path2D();
// circle.arc(x, y, point.radius, 0, 2 * Math.PI);
// ctx.fill(circle);
// });
}
const line = d3Line<LinePoint>()
Expand Down

0 comments on commit 2c313fc

Please sign in to comment.