void DrawGroup(Base3D.Group p, Pen pen) { foreach (Entity e in p.entities) { DrawEntity(e, pen); } }
void DrawGroup(Base3D.Group p) { foreach (Entity e in p.entities) { DrawEntity(e); } }