public VoronoiEdgeType GetEdgeType(VoronoiCell otherCell)
 {
     return(VoronoiMetrics.GetEdgeType(_elevation, otherCell._elevation));
 }
 public VoronoiEdgeType GetEdgeType(VoronoiDirection direction)
 {
     return(VoronoiMetrics.GetEdgeType(_elevation, Neighbors[direction]._elevation));
 }