/// 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).
#[derive(Clone, Copy, Debug, PartialEq)]pubstructValue{/// This is often something monotonically increasing, such as time, but
/// doesn't have to be. Goes from left to right.
pubx:f64,
/// Goes from bottom to top (inverse of everything else in egui!).
puby:f64,
}implValue{#[inline(always)]pubfnnew(x: impl Into<f64>, y: impl Into<f64>)->Self{Self{
x: x.into(),
y: y.into(),}}}