ImageSharp/ImageSharp.Drawing/IntersectionRule.cs
2026-08-03 22:31:27 +02:00

21 lines
474 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.ImageSharp.Drawing {
/// <summary>
/// Provides options for calculating intersection points.
/// </summary>
public enum IntersectionRule
{
/// <summary>
/// Only odd numbered sub-regions are filled.
/// </summary>
EvenOdd = 0,
/// <summary>
/// Only non-zero sub-regions are filled.
/// </summary>
NonZero = 1
}
}