public void Draw(Graphics g, Transform projection, int width, int height) { foreach (var Verge in Verges) { Verge.Draw(g, projection, width, height); } }
public void Draw(Graphics g, Transform projection, int width, int height) { if (Points.Count != 6) { return; } foreach (var Verge in Verges) { Verge.Draw(g, projection, width, height); } }