pub struct Arrows { /* private fields */ }Expand description
A set of arrows.
Implementations§
Source§impl Arrows
impl Arrows
pub fn new(origins: impl Into<PlotPoints>, tips: impl Into<PlotPoints>) -> Self
Sourcepub fn allow_hover(self, hovering: bool) -> Self
pub fn allow_hover(self, hovering: bool) -> Self
Allowed hovering this item in the plot. Default: true.
Sourcepub fn tip_length(self, tip_length: f32) -> Self
pub fn tip_length(self, tip_length: f32) -> Self
Set the length of the arrow tips
Trait Implementations§
Source§impl PlotItem for Arrows
impl PlotItem for Arrows
fn shapes(&self, _ui: &Ui, transform: &PlotTransform, shapes: &mut Vec<Shape>)
Source§fn initialize(&mut self, _x_range: RangeInclusive<f64>)
fn initialize(&mut self, _x_range: RangeInclusive<f64>)
For plot-items which are generated based on x values (plotting functions).
fn name(&self) -> &str
fn color(&self) -> Color32
fn highlight(&mut self)
fn highlighted(&self) -> bool
Source§fn allow_hover(&self) -> bool
fn allow_hover(&self) -> bool
Can the user hover this item?
fn geometry(&self) -> PlotGeometry<'_>
fn bounds(&self) -> PlotBounds
fn id(&self) -> Option<Id>
fn find_closest( &self, point: Pos2, transform: &PlotTransform, ) -> Option<ClosestElem>
fn on_hover( &self, elem: ClosestElem, shapes: &mut Vec<Shape>, cursors: &mut Vec<Cursor>, plot: &PlotConfig<'_>, label_formatter: &LabelFormatter<'_>, )
Auto Trait Implementations§
impl Freeze for Arrows
impl !RefUnwindSafe for Arrows
impl !Send for Arrows
impl !Sync for Arrows
impl Unpin for Arrows
impl !UnwindSafe for Arrows
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