(&self)
| 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> { |
nothing calls this directly
no test coverage detected