| 12 | |
| 13 | #[derive(Debug, Clone, Copy)] |
| 14 | pub struct Particle { |
| 15 | /// TODO: Variable dimensionality |
| 16 | pub coordinates: [f64; 2], |
| 17 | /// The number of times this particle has been attempted to be joined to. |
| 18 | pub join_attempts: usize, |
| 19 | } |
| 20 | |
| 21 | /// Data associated with the nodes. |
| 22 | type NodeDataType = Particle; |
nothing calls this directly
no outgoing calls
no test coverage detected