Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
AntoniosBarotsis committed Mar 26, 2024
1 parent 3a1f9af commit 53fd41e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -164,8 +164,16 @@ impl eframe::App for MyApp {
let left = self.queue_to_points(&self.left);

plot.show(ui, |plot_ui| {
plot_ui.line(Line::new(PlotPoints::from(right)).color(Color32::GREEN).width(2.5));
plot_ui.line(Line::new(PlotPoints::from(left)).color(Color32::RED).width(2.5));
plot_ui.line(
Line::new(PlotPoints::from(right))
.color(Color32::GREEN)
.width(2.5),
);
plot_ui.line(
Line::new(PlotPoints::from(left))
.color(Color32::RED)
.width(2.5),
);
});
});

0 comments on commit 53fd41e

Please sign in to comment.