()
| 28 | |
| 29 | impl Default for GraphDesc { |
| 30 | fn default() -> Self { |
| 31 | Self { |
| 32 | node_color: GREEN, |
| 33 | title: Default::default(), |
| 34 | node_radius: 20., |
| 35 | node_distance_x: 55., |
| 36 | node_distance_y: 65., |
| 37 | egde_color: EdgeColor::Mixed, |
| 38 | window_width: 395, |
| 39 | window_height: 395, |
| 40 | outer_ring: (GREEN, 0.) |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | #[derive(Debug, Default)] |
nothing calls this directly
no outgoing calls
no test coverage detected