ImageSharp/SixLabors.Fonts/Rendering/FillRule.cs
2026-08-03 22:31:27 +02:00

21 lines
435 B
C#

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