21 lines
474 B
C#
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
|
|
}
|
|
}
|