comment the function

This commit is contained in:
Weird Constructor 2022-07-23 11:50:01 +02:00
parent 557b0b7121
commit b2f869fe2b

View file

@ -978,6 +978,14 @@ impl Matrix {
}
}
/// Retrieves the immediate connections to adjacent cells and returns a list.
///
/// Returns a vector with pairs of this content:
///
/// (
/// (this_cell_connection_dir, this_cell_node_io_index),
/// (other_cell_connection_dir, other_cell_node_io_index, (other_cell_x, other_cell_y))
/// )
pub fn get_connections(
&self,
x: usize,