Removed dead code
This commit is contained in:
@@ -98,18 +98,7 @@ class _GraphViewState extends State<GraphView> {
|
|||||||
// The jitter is centered around zero by subtracting playerCount ~/ 2 from the player index i.
|
// The jitter is centered around zero by subtracting playerCount ~/ 2 from the player index i.
|
||||||
: cumulativeScores[i][j - 1] + (i - playerCount ~/ 2) * jitterStep
|
: cumulativeScores[i][j - 1] + (i - playerCount ~/ 2) * jitterStep
|
||||||
),
|
),
|
||||||
); /*List.generate(
|
);
|
||||||
cumulativeScores[i].length,
|
|
||||||
(j) => (
|
|
||||||
j,
|
|
||||||
j == 0
|
|
||||||
? 0 // In Runde 0 immer 0 Punkte
|
|
||||||
:
|
|
||||||
// Add a small jitter to the cumulative scores to prevent overlapping data points in the graph.
|
|
||||||
// The jitter is centered around zero by subtracting playerCount ~/ 2 from the player index i.
|
|
||||||
cumulativeScores[i][j] + (i - playerCount ~/ 2) * jitterStep
|
|
||||||
),
|
|
||||||
);*/
|
|
||||||
|
|
||||||
/// Create a LineSeries for the player
|
/// Create a LineSeries for the player
|
||||||
/// The xValueMapper maps the round number, and the yValueMapper maps the cumulative score.
|
/// The xValueMapper maps the round number, and the yValueMapper maps the cumulative score.
|
||||||
|
|||||||
Reference in New Issue
Block a user