Skip to content
Permalink
98ddaeec7d
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
29 lines (23 sloc) 521 Bytes
public class FaceList {
private ArrayList<Face> faces;
private Face unboundFace;
public FaceList() {
//faces = new ArrayList<Face>();
//unboundFace = new Face();
}
public ArrayList<Face> getFaces() {
return faces;
}
public Face getUnboundFace() {
return unboundFace;
}
public boolean contains(Face f) {
return faces.contains(f);
}
public void addFace(Face f) {
faces.add(f);
}
public boolean removeFace(Point p) {
return faces.remove(p);
}
}