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