public interface Path
Path interface represents a path through the grid,
and consists of a list of points.| Modifier and Type | Method and Description |
|---|---|
void |
addPoint(Point p)
Adds a point to the end of the path
|
java.util.List<Point> |
getPoints()
Returns the list of points that define this path.
|