Path specifies a set of points that an actor will move among, in order, at a fixed speed.
Return the number of points in this path
Return a copy of the ith point in the path. We return a copy, so that the caller can use the point
The index of the point to return (0-based)
Add a new point to a path by giving the coordinates for where the center of the actor goes next. This returns the path, so that calls to to can be chained.
to
X value of the new coordinate
Y value of the new coordinate
Path specifies a set of points that an actor will move among, in order, at a fixed speed.