public bool Contains(Polygon polygon)
 {
     return(polygons.Contains(polygon));
 }
 public void Remove(Polygon polygon)
 {
     polygons.Remove(polygon);
     Debug.Log("Edge " + id + " has no polygons - deleting");
     VoronoiGraph.uniqueVEdges.Remove(this);
 }