pub struct PlotPoint {
pub x: f64,
pub y: f64,
}
Expand description
A point coordinate in 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§
impl Copy for PlotPoint
impl StructuralPartialEq for PlotPoint
Auto Trait Implementations§
impl Freeze for PlotPoint
impl RefUnwindSafe for PlotPoint
impl Send for PlotPoint
impl Sync for PlotPoint
impl Unpin for PlotPoint
impl UnwindSafe for PlotPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more