()
| 12 | const OFFSET_STEP: f32 = 4.0; |
| 13 | |
| 14 | fn main() -> iced::Result { |
| 15 | iced::application(App::new, App::update, App::view) |
| 16 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 17 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 18 | .run() |
| 19 | } |
| 20 | |
| 21 | struct App { |
| 22 | widget: PlotWidget, |
nothing calls this directly
no outgoing calls
no test coverage detected