mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 21:00:03 -04:00
Expose PlotGeometry in public API (#4193)
Expose `egui_plot::items::values::PlotGeometry` in public API so that `PlotItem`, which is already public, can actually be implemented by applications. Fixes #3464. --------- Co-authored-by: Dominique Würtz <dom@blaukraut.info>
This commit is contained in:
@@ -9,11 +9,11 @@ use crate::*;
|
||||
|
||||
use super::{Cursor, LabelFormatter, PlotBounds, PlotTransform};
|
||||
use rect_elem::*;
|
||||
use values::{ClosestElem, PlotGeometry};
|
||||
use values::ClosestElem;
|
||||
|
||||
pub use bar::Bar;
|
||||
pub use box_elem::{BoxElem, BoxSpread};
|
||||
pub use values::{LineStyle, MarkerShape, Orientation, PlotPoint, PlotPoints};
|
||||
pub use values::{LineStyle, MarkerShape, Orientation, PlotGeometry, PlotPoint, PlotPoints};
|
||||
|
||||
mod bar;
|
||||
mod box_elem;
|
||||
|
||||
Reference in New Issue
Block a user