Remove unused variable from Dwyer.

This commit is contained in:
wo80
2022-02-13 13:46:18 +01:00
parent d2bb1334c9
commit 246288398f
+3 -3
View File
@@ -46,11 +46,11 @@ namespace TriangleNet.Meshing.Algorithm
/// </remarks>
public class Dwyer : ITriangulator
{
// Random is not threadsafe, so don't make this static.
Random rand = new Random(DateTime.Now.Millisecond);
IPredicates predicates;
/// <summary>
/// Gets or sets a value indicating whether to use alternating cuts (default = true).
/// </summary>
public bool UseDwyer = true;
Vertex[] sortarray;