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