(&self, _ui: &Ui, transform: &PlotTransform, shapes: &mut Vec<Shape>)
| 140 | |
| 141 | impl PlotItem for BoxPlot { |
| 142 | fn shapes(&self, _ui: &Ui, transform: &PlotTransform, shapes: &mut Vec<Shape>) { |
| 143 | for b in &self.boxes { |
| 144 | b.add_shapes(transform, self.base.highlight, shapes); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | fn initialize(&mut self, _x_range: RangeInclusive<f64>) { |
| 149 | // nothing to do |
nothing calls this directly
no test coverage detected