| 24 | } |
| 25 | |
| 26 | struct App { |
| 27 | widget: PlotWidget, |
| 28 | control_series_id: ShapeId, |
| 29 | control_poly_id: ShapeId, |
| 30 | spline_series_id: ShapeId, |
| 31 | control_points: Vec<[f64; 2]>, |
| 32 | active_control_point: Option<usize>, |
| 33 | } |
| 34 | |
| 35 | impl App { |
| 36 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected