()
| 9 | use rand_distr::{Distribution, Normal}; |
| 10 | |
| 11 | fn main() -> iced::Result { |
| 12 | iced::application(new_scatter, update, view) |
| 13 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 14 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 15 | .theme(iced::theme::Theme::SolarizedDark) |
| 16 | .run() |
| 17 | } |
| 18 | |
| 19 | #[derive(Debug, Clone)] |
| 20 | enum Message { |