diff --git a/src/Triangle/Meshing/Algorithm/Dwyer.cs b/src/Triangle/Meshing/Algorithm/Dwyer.cs index 2e227f5..d24653d 100644 --- a/src/Triangle/Meshing/Algorithm/Dwyer.cs +++ b/src/Triangle/Meshing/Algorithm/Dwyer.cs @@ -46,11 +46,11 @@ namespace TriangleNet.Meshing.Algorithm /// public class Dwyer : ITriangulator { - // Random is not threadsafe, so don't make this static. - Random rand = new Random(DateTime.Now.Millisecond); - IPredicates predicates; + /// + /// Gets or sets a value indicating whether to use alternating cuts (default = true). + /// public bool UseDwyer = true; Vertex[] sortarray;