| 1322 | Some(axis_ranges.1), |
| 1323 | )?; |
| 1324 | let y1 = data_value_to_plot_with_axis_range( |
| 1325 | hline1.y, |
| 1326 | widget.y_axis_scale, |
| 1327 | hline1.transform.as_ref(), |
| 1328 | Some(axis_ranges.1), |
| 1329 | )?; |
| 1330 | push_quad_as_triangles(&mut vertices, [x0, y0], [x0, y1], [x1, y0], [x1, y1]); |
| 1331 | } |
| 1332 | (FillEndpoint::VLine(vline0), FillEndpoint::VLine(vline1)) => { |
| 1333 | let (y0, y1) = y_domain?; |
nothing calls this directly
no outgoing calls
no test coverage detected