| 14 | |
| 15 | #[derive(Debug)] |
| 16 | pub struct GraphDesc { |
| 17 | pub title: String, |
| 18 | pub node_color: Color, |
| 19 | pub node_radius: f32, |
| 20 | pub node_distance_x: f32, |
| 21 | pub node_distance_y: f32, |
| 22 | pub egde_color: EdgeColor, |
| 23 | pub window_width: i32, |
| 24 | pub window_height: i32, |
| 25 | pub outer_ring: (Color, f32), |
| 26 | |
| 27 | } |
| 28 | |
| 29 | impl Default for GraphDesc { |
| 30 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected