Browse Source

Export the PlotBounds type. (#1392)

pull/1404/head
Edgeworth 3 years ago
committed by GitHub
parent
commit
e5aeb1618f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      egui/src/widgets/plot/mod.rs

3
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;

Loading…
Cancel
Save