removed distance filter from Graph
This commit is contained in:
parent
9169060cae
commit
ee9d510316
@ -121,7 +121,7 @@ public class Graph {
|
|||||||
Point last = null;
|
Point last = null;
|
||||||
g.setColor(Color.RED);
|
g.setColor(Color.RED);
|
||||||
for (final Point current : points) {
|
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);
|
g.drawLine(last.x, last.y, current.x, current.y);
|
||||||
}
|
}
|
||||||
last = current;
|
last = current;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user