| 9 | /// In all cases, the seed points will be written first. |
| 10 | #[derive(Debug, Clone, ValueEnum)] |
| 11 | enum OutputFormat { |
| 12 | /// Use TGF graph output format, labelling each node with the WKT point. |
| 13 | /// Edges will be unlabeled with weight, as that can be done in a post-processing |
| 14 | /// step, which simplifies the datastructure here. |
| 15 | Tgf, |
| 16 | /// Prints each point in WKT on its own line. |
| 17 | Wkt, |
| 18 | } |
| 19 | |
| 20 | /// Off-lattice diffusion limited aggregation |
| 21 | #[derive(Debug, Parser)] |
nothing calls this directly
no outgoing calls
no test coverage detected