| 1771 | } |
| 1772 | |
| 1773 | fn plot_mouse_interaction(state: &PlotState) -> Interaction { |
| 1774 | if state.pan.active { |
| 1775 | Interaction::Grabbing |
| 1776 | } else if state.selection.active { |
| 1777 | Interaction::Crosshair |
| 1778 | } else if state.picking.last_hover_cache.is_some() { |
| 1779 | Interaction::Pointer |
nothing calls this directly
no outgoing calls
no test coverage detected