Remove duplicate calculation in StandardVoronoi

git-svn-id: https://triangle.svn.codeplex.com/svn@77033 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
This commit is contained in:
SND\wo80_cp
2015-07-09 17:52:45 +00:00
parent efd9d1260d
commit 6424ec003d
@@ -34,19 +34,7 @@ namespace TriangleNet.Voronoi
/// </summary>
private void PostProcess(Rectangle box)
{
var infEdges = new List<HalfEdge>();
// TODO: save the half-infinite boundary edge in base class
// so we don't have to process the complete list here.
foreach (var edge in base.edges)
{
if (edge.next == null)
{
infEdges.Add(edge);
}
}
foreach (var edge in infEdges)
foreach (var edge in rays)
{
// The vertices of the infinite edge.
var v1 = (Point)edge.origin;