class MyFace{ int npoints = 0; MyPoint [] points; color c = color(255,255,255); boolean isSelected = false; MyFace (){ points = new MyPoint[0]; } MyFace(MyPoint[] inPoints){ points = new MyPoint[inPoints.length]; npoints = inPoints.length; for(int i=0; i