From e5aeb1618f71581a051257130012ad1251ee7559 Mon Sep 17 00:00:00 2001 From: Edgeworth <140149+Edgeworth@users.noreply.github.com> Date: Tue, 22 Mar 2022 16:59:13 +0900 Subject: [PATCH] Export the PlotBounds type. (#1392) --- egui/src/widgets/plot/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/egui/src/widgets/plot/mod.rs b/egui/src/widgets/plot/mod.rs index 3885fc11..f4b7e343 100644 --- a/egui/src/widgets/plot/mod.rs +++ b/egui/src/widgets/plot/mod.rs @@ -8,13 +8,14 @@ use epaint::color::Hsva; use epaint::util::FloatOrd; use items::PlotItem; use legend::LegendWidget; -use transform::{PlotBounds, ScreenTransform}; +use transform::ScreenTransform; pub use items::{ Arrows, Bar, BarChart, BoxElem, BoxPlot, BoxSpread, HLine, Line, LineStyle, MarkerShape, Orientation, PlotImage, Points, Polygon, Text, VLine, Value, Values, }; pub use legend::{Corner, Legend}; +pub use transform::PlotBounds; mod items; mod legend;