(&self, f: &mut std::fmt::Formatter)
| 25 | |
| 26 | impl std::fmt::Display for StreamlineKind { |
| 27 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 28 | match self { |
| 29 | // important: Should match clap::ValueEnum format |
| 30 | StreamlineKind::PerVertex => write!(f, "per-vertex"), |
| 31 | StreamlineKind::PerCentroid => write!(f, "per-centroid"), |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /// Generate vector field streamlines for the given geometries |
nothing calls this directly
no outgoing calls
no test coverage detected