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 NewPath {
// A Path is an arraylist of points (PVector objects)
ArrayList<ArrayList<PVector>> Points;
ArrayList<PVector>Layer;
ArrayList<PVector>points;
// A path has a radius, i.e how far is it ok for the boid to wander off
//float radius;
NewPath()
{
// Arbitrary radius of 30
//radius = 30;
Points = new ArrayList<ArrayList<PVector>>();
//Layer=new ArrayList<PVector>();
points=new ArrayList<PVector>();
}
//Leave for meshinh the track for A* algorithm to be apllied.
}