Files
2026-03-04 10:03:45 +08:00

17 lines
317 B
C#

using System;
namespace TriangleNet.Meshing
{
public class ConstraintOptions
{
[Obsolete("Not used anywhere, will be removed in beta 4.")]
public bool UseRegions { get; set; }
public bool ConformingDelaunay { get; set; }
public bool Convex { get; set; }
public int SegmentSplitting { get; set; }
}
}