1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-03 07:10:04 -04:00

Export the PlotBounds type. (#1392)

This commit is contained in:
Edgeworth
2022-03-22 16:59:13 +09:00
committed by GitHub
parent 0a400a5bcc
commit e5aeb1618f

View File

@@ -8,13 +8,14 @@ use epaint::color::Hsva;
use epaint::util::FloatOrd; use epaint::util::FloatOrd;
use items::PlotItem; use items::PlotItem;
use legend::LegendWidget; use legend::LegendWidget;
use transform::{PlotBounds, ScreenTransform}; use transform::ScreenTransform;
pub use items::{ pub use items::{
Arrows, Bar, BarChart, BoxElem, BoxPlot, BoxSpread, HLine, Line, LineStyle, MarkerShape, Arrows, Bar, BarChart, BoxElem, BoxPlot, BoxSpread, HLine, Line, LineStyle, MarkerShape,
Orientation, PlotImage, Points, Polygon, Text, VLine, Value, Values, Orientation, PlotImage, Points, Polygon, Text, VLine, Value, Values,
}; };
pub use legend::{Corner, Legend}; pub use legend::{Corner, Legend};
pub use transform::PlotBounds;
mod items; mod items;
mod legend; mod legend;