pub trait Grid: Index<Point> { // Required method fn points(&self) -> Vec<Point>; }
Represents an n-dimensional grid of values, indexable via Point.
Point
Returns all points in the grid.
Useful for enumeration with Iterator::zip.
Iterator::zip