MCPcopy Create free account
hub / github.com/emilk/egui_plot / bounds

Method bounds

egui_plot/src/rect_elem.rs:15–20  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

13 fn bounds_max(&self) -> PlotPoint;
14
15 fn bounds(&self) -> PlotBounds {
16 let mut bounds = PlotBounds::NOTHING;
17 bounds.extend_with(&self.bounds_min());
18 bounds.extend_with(&self.bounds_max());
19 bounds
20 }
21
22 /// At which argument (input; usually X) there is a ruler (usually vertical)
23 fn arguments_with_ruler(&self) -> Vec<PlotPoint> {

Callers

nothing calls this directly

Implementers 2

bar_chart.rsegui_plot/src/items/bar_chart.rs
box_plot.rsegui_plot/src/items/box_plot.rs

Calls 3

extend_withMethod · 0.80
bounds_minMethod · 0.45
bounds_maxMethod · 0.45

Tested by

no test coverage detected