Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
class PathPlanner {
// Produces a path from a given track, startPoint, and EndPoint
Path track = null; // Path of the track it's given
Path path = null; // Path it produces
PVector startPoint = null; // Start point on the path
PVector endPoint = null; // Destination point
PathPlanner(Path atrack, PVector start, PVector destination) {
track = atrack;
startPoint = start;
endPoint = destination;
path = new Path();
}
void discritizeTrack() {
// Make the track a little more refined, to allow for more careful decisions
}
Path pathFinder() {
// Returns a Path through the track
return null;
}
}