Struct egui::widgets::plot::Value [−][src]
Expand description
A value in the value-space of the plot.
Uses f64 for improved accuracy to enable plotting large values (e.g. unix time on x axis).
Fields
x: f64
This is often something monotonically increasing, such as time, but doesn’t have to be. Goes from left to right.
y: f64
Goes from bottom to top (inverse of everything else in egui!).
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Value
impl UnwindSafe for Value
Blanket Implementations
Mutably borrows from an owned value. Read more