removed distance filter from Graph

This commit is contained in:
Patrick Haßel 2025-02-25 10:18:55 +01:00
parent 9169060cae
commit ee9d510316

View File

@ -121,7 +121,7 @@ public class Graph {
Point last = null;
g.setColor(Color.RED);
for (final Point current : points) {
if (last != null && current.x - last.x <= minuteScale * 2) {
if (last != null) {
g.drawLine(last.x, last.y, current.x, current.y);
}
last = current;