public void Redo() { List <Vertex> vertexList = new List <Vertex>(); foreach (VertexAction a in vertexActionList) { a.Redo(); vertexList.Add(a.vertex); } editor.Select(vertexList.ToArray()); }
public void Select() { editor.Select(Vertices); }