// Copyright (c) 2013, 2015 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE using System; namespace SharpNav { /// /// A set of flags that control the way contours are built. /// [Flags] public enum ContourBuildFlags { /// Build normally. None = 0, /// Tessellate solid edges during contour simplification. TessellateWallEdges = 0x01, /// Tessellate edges between areas during contour simplification. TessellateAreaEdges = 0x02 } }