// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Rendering {
///
/// Specifies the fill rule for path rasterization.
///
public enum FillRule
{
///
/// Non-zero winding rule.
///
NonZero = 0,
///
/// Even-odd rule.
///
EvenOdd = 1,
}
}