Skip to content

Commit 188208f

Browse files
committed
rebase fixes
1 parent ad902f5 commit 188208f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

egui_plot/src/items/filled_area.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ use egui::Shape;
99
use egui::Stroke;
1010
use egui::Ui;
1111

12-
use super::DEFAULT_FILL_ALPHA;
13-
use crate::PlotBounds;
14-
use crate::PlotGeometry;
15-
use crate::PlotItem;
16-
use crate::PlotItemBase;
17-
use crate::PlotPoint;
18-
use crate::PlotPoints;
19-
use crate::PlotTransform;
12+
use crate::axis::PlotTransform;
13+
use crate::bounds::PlotBounds;
14+
use crate::bounds::PlotPoint;
15+
use crate::colors::DEFAULT_FILL_ALPHA;
16+
use crate::data::PlotPoints;
17+
use crate::items::PlotGeometry;
18+
use crate::items::PlotItem;
19+
use crate::items::PlotItemBase;
2020

2121
/// A filled area between two lines.
2222
///

egui_plot/src/items/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub use crate::items::bar_chart::BarChart;
2626
pub use crate::items::box_plot::BoxElem;
2727
pub use crate::items::box_plot::BoxPlot;
2828
pub use crate::items::box_plot::BoxSpread;
29+
pub use crate::items::filled_area::FilledArea;
2930
pub use crate::items::heatmap::Heatmap;
3031
pub use crate::items::line::HLine;
3132
pub use crate::items::line::VLine;

0 commit comments

Comments
 (0)