public void addPoint(Vert vert) { if (index == 3) { Log.Write("WARNING: Trying to add more than 3 verts to a triangle?"); return; } Verts[index] = vert; index++; }
public Face() { Verts = new Vert[3]; Colour = Colour4.White; }